Skip to main content
GET
/
api
/
data
/
v1
/
accounts
Get All Accounts
curl --request GET \
  --url https://{domo_instance}.domo.com/api/data/v1/accounts \
  --header 'X-DOMO-Developer-Token: <api-key>'
[
  {
    "accountId": "{account_id}",
    "displayName": "Account 1"
  },
  {
    "accountId": "{account_id}",
    "displayName": "Account 2"
  }
]

Authorizations

X-DOMO-Developer-Token
string
header
required

Developer token for authentication.

Response

A list of accounts.

accountId
string

The unique identifier for the account.

displayName
string

The display name of the account.