Role

Endpoint to retrieve data for roles.

Finds roles by filtering a specific conference(frame).

get

Gets Role objects.

Authorizations
Path parameters
idinteger · int64Required

Id of the conference the roles are loaded for.

Responses
200

Successful response

application/json
get
GET /rest-api/v2/frame/{id}/role HTTP/1.1
Host: 
token: YOUR_API_KEY
Accept: */*
{
  "meta": {},
  "data": [
    {
      "id": 1,
      "name": [
        {
          "language": "text",
          "content": "text"
        }
      ]
    }
  ]
}

Was this helpful?