Skip to main content
POST
/
{version}
/
payment-accounts
/
create
Create Payment Account
curl --request POST \
  --url https://api.example.com/{version}/payment-accounts/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_name": "<string>",
  "provider": "<string>",
  "method": "<string>",
  "party_id": 123,
  "country_code": "<string>",
  "insensitive_account_number": "<string>"
}
'
{
  "id": 123,
  "account_name": "<string>",
  "provider": "<string>",
  "method": "<string>",
  "party_id": 123,
  "is_active": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "country_code": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

version
string
required
Allowed value: "v1"

Query Parameters

operation_type
enum<string>
required
Available options:
COLLECTION,
PAYOUT,
TRANSFER,
REFUND

Body

application/json

CreatePaymentAccountPayload

account_name
string
required
provider
string
required
method
string
required
party_id
integer
required
country_code
string | null
insensitive_account_number
string | null

Response

Successful Response

PaymentAccountResponse

id
integer
required
account_name
string
required
provider
string
required
method
string
required
party_id
integer
required
is_active
boolean
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
country_code
string | null
Last modified on June 23, 2026