Skip to main content
PATCH
/
member-certifications
/
{id}
Update a member certification
curl --request PATCH \
  --url https://www.ruddr.io/api/workspace/member-certifications/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "isActive": true
}
'
{
  "id": "f8a2c5e7-3d19-4b06-92a4-b1d0e7f63c82",
  "name": "Certified ScrumMaster",
  "isActive": true,
  "createdAt": "2025-08-12T10:35:48.719Z"
}
A certification or credential that can be assigned to members.

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 certification uuid.

Body

application/json
name
string

The name of the member certification. Max 255 characters.

isActive
boolean

Whether the member certification is active.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the member certification.

isActive
boolean

Whether the member certification is active.

createdAt
string<date-time>

The timestamp when the object was created.