v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Register banking account

Register banking accounts with transaction banking

Onboard accounts that already exist in Banking into Transaction Banking. Once onboarded, these accounts are enabled to use transaction banking APIs and features.

post/corporate/v2/corporate-accounts/register

Request body

account_idinteger required

Registered account ID. This ID is client-generated.

division_codestring

Code used to identify your division within the organization. Division code should only contain letters, numbers, and hyphens.

Example request

{
  "account_id": 325636216,
  "division_code": "US"
}

Response

Created

account_idinteger required

Registered account ID. This ID is client-generated.

program_idinteger required

Program ID. This is a client-provided ID.

statusstring required

Transaction banking account registration status. COMPLETED is returned only when the registration succeeds.

division_codestring

Code used to identify your division within the organization. Division code should only contain letters, numbers, and hyphens.

Example response

{
  "account_id": 325636216,
  "program_id": 2222,
  "status": "COMPLETED",
  "division_code": "US"
}