Skip to main content
GET
/
v1
/
workspaces
/
{id}
/
roles
List workspace roles
curl --request GET \
  --url https://api.conduit.ai/v1/workspaces/{id}/roles \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "role_id": "<string>",
      "name": "Member",
      "is_default": true,
      "permissions": [
        "View Contacts",
        "Manage Contacts"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Conduit API token. Use Authorization: Bearer <token>. Read/write endpoints require a token with write access.

Path Parameters

id
string
required

Workspace identifier.

Example:

"j57demo8f8x7c9v0n2q4r6t8y1u3i5o"

Response

Workspace roles

Workspace roles with the permission names each role grants.

data
object[]
required