GET /WorkApps/{workAppId}/Accesses

Lists user accesses for a specific Work App.

get
Authorizations
Path parameters
workAppIdstring · uuidRequired

The Work App's ID.

Query parameters
cursorstringOptional

Optional pagination cursor for fetching the next page of results. Refer to the pagination section in the documentation for usage details.

Header parameters
X-API-SECRETstringRequired

API Secret is used to verify the integrity of the request and authenticate the client. It should be included in all requests. This value must be kept confidential and should never be exposed in client-side code or public repositories.

Example: YOUR_API_SECRET
Responses
200

OK

get
GET /api/v1/WorkApps/{workAppId}/Accesses HTTP/1.1
Host: open-api.getcakewalk.io
X-API-KEY: YOUR_API_KEY
X-API-SECRET: YOUR_API_SECRET
Accept: */*
{
  "data": [
    {
      "isOwner": true,
      "user": {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "name": "text",
        "email": "text",
        "roleId": 1,
        "roleName": "User",
        "statusId": 1,
        "statusName": "Active",
        "lastLogin": "2025-08-08T20:59:29.336Z",
        "managerId": "123e4567-e89b-12d3-a456-426614174000"
      },
      "permissionLevel": {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "name": "text",
        "description": "text",
        "isDefault": true,
        "isPrivileged": true
      }
    }
  ],
  "links": {
    "self": "text",
    "next": "text"
  }
}

Last updated

Was this helpful?