Skip to main content
GET
/
api
/
data
/
v1
/
accounts
/
{account_id}
Get Account by ID
curl --request GET \
  --url https://{domo_instance}.domo.com/api/data/v1/accounts/{account_id} \
  --header 'X-DOMO-Developer-Token: <api-key>'
{
  "accountId": "{account_id}",
  "displayName": "Account Display Name",
  "status": "Active"
}

Authorizations

X-DOMO-Developer-Token
string
header
required

Developer token for authentication.

Path Parameters

account_id
string
required

The unique identifier for the account.

Response

Account information retrieved successfully.

Represents a Domo account.

accountId
string

The unique identifier for the account.

displayName
string

The display name of the account.

status
string

The status of the account.

Example:

"Active"