Skip to main content
GET
/
v1
/
accounts
/
{ACCOUNT_ID}
Retrieve an Account
curl --request GET \
  --url https://api.domo.com/v1/accounts/{ACCOUNT_ID} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "valid": true,
  "type": {
    "id": "<string>",
    "properties": {}
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

ACCOUNT_ID
string
required

The ID of the Account

Response

200 - application/json

Returns an Account object if a valid Account ID was provided. When requesting, the Account Type object will not contain any properties.

id
string
name
string
valid
boolean
type
object