Skip to main content
GET
/
v1
/
account-types
/
{ACCOUNT_TYPE_ID}
Get Account Type
curl --request GET \
  --url https://api.domo.com/v1/account-types/{ACCOUNT_TYPE_ID} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "_templates": {
    "default": {
      "title": "<string>",
      "contentType": "<string>",
      "method": "<string>",
      "key": "<string>",
      "properties": [
        {
          "name": "<string>",
          "prompt": "<string>",
          "required": true
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

ACCOUNT_TYPE_ID
string
required

The ID of the Account Type

Response

200 - application/json

Returns an Account Type object if valid Account Type ID was provided.

id
string
name
string
_templates
object