POST/v2/payment-instrument/create

Create Payment Instrument

Creates a payment instrument (bank account, wire, etc.) linked to a beneficiary.

Headers

FieldTypeRequiredPossible valuesDescription
AuthorizationstringRequiredBearer {SessionToken}Session token from Get Session Token, sent as `Authorization: Bearer {SessionToken}`. Replace with the value from the `x-refresh-token` response header when present (typically within 2 minutes of expiry). Secured calls must use the same IP as the auth request.

Request body

FieldTypeRequiredPossible valuesDescription
fieldstextareaRequired[{ "field": "FieldName", "value": "..." }]Field values from Get Required Fields (Create Payment Instrument). JSON array: [{ "field": "FieldName", "value": "..." }].

Example request

[
  {
    "field": "Payment_Type",
    "value": "BUS_BTC_Account.Payment_BTC"
  },
  {
    "field": "BeneficiaryId",
    "value": "{{beneficiaryIDV2}}"
  },
  {
    "field": "Nickname",
    "value": "Wire-Domestic-Instrument"
  …

Additional_Info can be included as one item inside fields[] when bank details cannot be resolved from the routing number or SWIFT code.

Example fields[] item: { "field": "Additional_Info", "value": "{\"Bank_Name\":\"Example Bank\",\"Bank_Address\":\"123 Main Street\",\"Bank_City\":\"New York\",\"Bank_State\":\"NY\",\"Bank_Postal_Code\":\"10001\",\"Bank_Country\":\"US\"}" }

Note: Use the Get Bank Details endpoint to fetch beneficiary bank details using routing number.

Response

FieldTypePossible valuesDescription
ResponseCodeinteger200 | 201 | 204 | 400 | 401 | 403 | 404 | 410 | 422 | 500 | 301 | 503 | 422API result code in the response envelope. Indicates success or the error category (e.g. 200 success, 400 bad request, 401 unauthorized).
ResponseMessagestringSuccess | Created | NoContent | BadRequest | Unauthorized | Forbidden | NotFound | Gone | UnprocessableContent | ServerError | ResourceMoved | ServiceUnAvailable | UnProcessableEntityHuman-readable label paired with ResponseCode (e.g. Success, BadRequest, Unauthorized). Use with ResponseCode to interpret the outcome.
ResponseDataobjectPlease refer to below example for response bodyID of the newly created payment instrument (use as BeneficiaryPaymentInstrumentID in payments).

Example response

{
  "ResponseCode": 200,
  "ResponseMessage": "Success",
  "ResponseData": {
    "BeneficiaryId": "4934710774492212995"
  }
}

Requires `Authorization: Bearer {SessionToken}` from Get Session Token. Refresh via `x-refresh-token` when supplied; use the same client IP as authentication.

Search guide books, endpoints, paths, or parameters

↑↓navigateopenEscclose