Skip to main content
POST
/
v1
/
member-access
/
sync
Sync active Clerk members into workspace access assignments
curl --request POST \
  --url http://localhost:3001/v1/member-access/sync \
  --header 'Content-Type: application/json' \
  --data '
{
  "members": [
    {
      "clerkUserId": "<string>",
      "email": "jsmith@example.com",
      "clerkRole": "<string>"
    }
  ]
}
'
{
  "roles": [
    {
      "name": "<string>",
      "description": "<string>",
      "locked": true,
      "permissions": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "assignments": [
    {
      "id": "<string>",
      "email": "jsmith@example.com",
      "clerkUserId": "<string>",
      "invitedByUserId": "<string>",
      "activatedAt": "2023-11-07T05:31:56Z",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Headers

authorization
string
Minimum string length: 1
x-organization-id
string
Minimum string length: 1

Body

application/json
members
object[]
required

Response

Default Response

roles
object[]
required
assignments
object[]
required