Update account

Update an existing account.

PATCH
/v1/accounts/{account_id}

Authorization

authorization
AuthorizationBearer <token>

In: header

Path Parameters

account_id*string

Account ID

Request Body

application/json

Account params

TypeScript Definitions

Use the request body type in TypeScript.

Request schema for updating an account

Response Body

application/json

application/json

application/json

application/json

curl -X PATCH "https://example.com/v1/accounts/string" \  -H "Content-Type: application/json" \  -d '{    "name": "My Account"  }'
{  "data": {    "created_at": "2017-09-12T12:34:55Z",    "id": "acct_d025a96ac0c6",    "name": "Tender Medical",    "object": "account",    "updated_at": "2017-09-13T10:11:12Z"  }}