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>"
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json
OK
email
string
first_name
string
id
integer
last_name
string
phone_number
string
role
enum<string>
Available options:
admin,
viewer,
payer,
ap_approver,
ap_creator
scope
enum<string>
Available options:
organization,
app
username
string