Skip to main content
PATCH
/
member-tags
/
{id}
Update a member tag
curl --request PATCH \
  --url https://www.ruddr.io/api/workspace/member-tags/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "isActive": true
}
'
{
  "id": "3f8a1c2e-7b45-4d9f-a6e2-0c1d5f8b3a7e",
  "name": "Studio X",
  "isActive": true,
  "createdAt": "2025-02-19T19:32:55.662Z"
}
A custom attribute that can be assigned to members and used to filter reports.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The member tag uuid.

Body

application/json
name
string

The name of the member tag.

isActive
boolean

Whether the member tag is active.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the member tag.

isActive
boolean

Whether the member tag is active.

createdAt
string<date-time>

The timestamp when the object was created.