PATCH
/
invoice_account_number
/
{id}
curl --request PATCH \
  --url https://api.treasuryprime.com/invoice_account_number/{id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "active": false
}'
{
  "account_id": "acct_1234567890",
  "account_number": "1234567890",
  "active": false,
  "bank_id": "bank_treasuryprime",
  "id": "acctnum_1234567890",
  "org_id": "org_1234567890",
  "tags": [],
  "userdata": null
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

Unique identifier for object

Body

application/json
The invoice_account_number to update

The body is of type object.

Response

200 - application/json
The invoice_account_number updated

The response is of type object.