Skip to main content
Break-glass add workspace member
curl --request POST \
  --url https://api.acornops.dev/admin/v1/workspaces/{workspaceId}/members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "<string>",
  "ticketRef": "<string>"
}
'
{
  "workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "role": "<string>",
  "email": "jsmith@example.com",
  "displayName": "<string>",
  "roleTemplate": {
    "key": "<string>",
    "displayName": "<string>",
    "capabilities": [
      "<string>"
    ],
    "protected": true,
    "sortOrder": 123,
    "description": "<string>"
  },
  "joinedAt": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.acornops.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Body

application/json
reason
string
required
Required string length: 3 - 500
ticketRef
string

Response

Membership created.

workspaceId
string<uuid>
required
userId
string<uuid>
required
role
string
required
email
string<email>
displayName
string
roleTemplate
object
joinedAt
string<date-time>