Skip to main content
POST
/
member-certifications
Create a member certification
curl --request POST \
  --url https://www.ruddr.io/api/workspace/member-certifications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "isActive": true
}
'
{
  "id": "b2e4d093-71a3-4c8f-9d12-6e8f3a0c7b29",
  "name": "AWS Certified Solutions Architect",
  "isActive": true,
  "createdAt": "2025-11-17T17:21:22.444Z"
}
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.

Body

application/json
name
string
required

The name of the member certification.

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.