latestSwagger 2.02026-08-20196638916.1 KB

23d8982b533d

ENTERPRISE
Connector.Account
MULTI_TENANT

Update account

Accepts an object of properties to be updated.

put/connector/users/{externalUserId}/accounts/{externalAccountId}

Path parameters

externalUserIdstring required

External identifier for the user.

externalAccountIdstring required

External identifier for the account.

Request body

availableCreditnumber double

The available credit of the account. Available credit is defined as the amount the customer has left to spend at this time. As such, it decreases with every reservation or transaction. For accounts without credit, this is always zero.

closedboolean

The closed state of the account.

exclusion'PFM_AND_SEARCH, PFM_DATA, NONE'

The type of features to exclude. PFM_AND_SEARCH will exclude the accounts transactions from categorization, PFM features, and search result. PFM_DATA will exclude the accounts transactions from categorization and PFM features.

namestring

The account name.

type'CHECKING, SAVINGS, INVESTMENT, MORTGAGE, CREDIT_CARD, LOAN, PENSION, OTHER, EXTERNAL'

The account type.

Example request

{
  "availableCredit": 20000,
  "exclusion": "PFM_AND_SEARCH",
  "name": "My savings account",
  "type": "CREDIT_CARD"
}

Response

Account updated.