Skip to main content
POST
/
api
/
data
/
v1
/
accounts
Create Account
curl --request POST \
  --url https://{domo_instance}.domo.com/api/data/v1/accounts \
  --header 'Content-Type: application/json' \
  --header 'X-DOMO-Developer-Token: <api-key>' \
  --data '
{
  "displayName": "New Account",
  "accountType": "Standard"
}
'
{
  "accountId": "{account_id}",
  "displayName": "New Account",
  "status": "Active"
}

Authorizations

X-DOMO-Developer-Token
string
header
required

Developer token for authentication.

Body

application/json
displayName
string
required

The name of the new account.

accountType
string
required

The type of account.

Example:

"Standard"

Response

Account created 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"