Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Organisation ID
curl --request GET \
--url https://api.tagdeliver.com/v1/organisation/{id}/roles \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": 1234,
"display_name": "Jamie",
"email": "jamie@contentignite.com",
"status": 0,
"roles": [
"generic.full_access"
]
}
],
"success": true
}Returns a list of users that have access to the given organisation
curl --request GET \
--url https://api.tagdeliver.com/v1/organisation/{id}/roles \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": 1234,
"display_name": "Jamie",
"email": "jamie@contentignite.com",
"status": 0,
"roles": [
"generic.full_access"
]
}
],
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Organisation ID
Was this page helpful?