Skip to main content
PATCH
/
v1
/
accounts
/
{ACCOUNT_ID}
Update an Account
curl --request PATCH \
  --url https://api.domo.com/v1/accounts/{ACCOUNT_ID} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "type": {
    "id": "<string>",
    "properties": {
      "password": "<string>",
      "authenticateBy": "<string>",
      "url": "<string>",
      "username": "<string>"
    }
  }
}
'
{
  "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

Body

application/json
name
string
type
object

Response

200 - application/json

Returns the updated Account.

id
string
name
string
valid
boolean
type
object