Get Company Authorizers
Retrieves all authorizers from a specific company. This acation can only be performed by a user with SuperUser,Accountant,AuthorisationAdministrator and Authoriser
This API resource is only available to Premium APPs.
GET authorization/:companyId/authorizers
Collection properties
| Property | Type | Description |
|---|---|---|
| Authorizers | Array | A list of companies authorizers. |
| _links | Array | A list of useful preconfigured uri's a client app can use to navigate this resource collection. |
| _metadata | Complex object | Optional object with additional information concerning the current returned result. |
Example response:
{
"authorisers":[
{
"id": "3069ba37-935b-4b2a-8016-8d345e29bec9",
"name": "authorizer 1",
"isLoggedInUser": true
},
{
"id": "3069ba37-935b-4b2a-8016-8d345e29bed9",
"name": "authorizer 2",
"isLoggedInUser": false
},
{
"id": "3069ba37-935b-4b2a-8016-8d345e29bea9",
"name": "authorizer 3",
"isLoggedInUser": false
},
{
"id": "3069ba37-935b-4b2a-8016-8d345e29bef9",
"name": "authorizer 4",
"isLoggedInUser": false
}
],
"metadata":{
"total": 4,
"count": 4
},
"links":[
{
"rel": "self",
"href": "https://api.basecone.com/authorization/6fcd4649-29f7-4c5b-9b61-f1fb4551ff61/authorizers?limit=20&offset=0"
}
]
}
