curl --request GET \
--url https://api.dots.dev/api/v2/accounts-payable/approvers \
--header 'Authorization: Basic <encoded-value>'
[
{
"email": "jsmith@example.com",
"first_name": "<string>",
"id": 123,
"last_name": "<string>",
"phone_number": "<string>",
"role": "admin",
"scope": "organization",
"username": "<string>"
}
]
List all approvers for api app
curl --request GET \
--url https://api.dots.dev/api/v2/accounts-payable/approvers \
--header 'Authorization: Basic <encoded-value>'
[
{
"email": "jsmith@example.com",
"first_name": "<string>",
"id": 123,
"last_name": "<string>",
"phone_number": "<string>",
"role": "admin",
"scope": "organization",
"username": "<string>"
}
]
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
OK
The response is of type object[]
.
Was this page helpful?