curl --request POST \
--url https://api.nuvion.tech/recipient-counterparties \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "individual",
"entity_relationship": "customer",
"name": "John Doe",
"email": "[email protected]",
"address": {
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country_code": "US",
"line_1": "123 Main St",
"line_2": "Apt 4B"
},
"account_details": {
"issuer": {
"code": "CHASE",
"name": "JPMorgan Chase Bank",
"short_name": "Chase"
},
"account_number": "1234567890",
"routing_number": "021000021",
"account_type": "checking",
"country": "US",
"payment_rails": "ach"
},
"meta": {
"preferred_contact_method": "email"
}
}
'{
"message": "Recipient counterparty created successfully",
"status": 201,
"data": {
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F3",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"type": "individual",
"entity_relationship": "customer",
"name": "John Doe",
"email": "[email protected]",
"address": {
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country_code": "US",
"line_1": "123 Main St",
"line_2": "Apt 4B",
"line_3": null
},
"account_details": {
"issuer": {
"code": "CHASE",
"name": "JPMorgan Chase Bank",
"short_name": "Chase"
},
"account_number": "1234567890",
"routing_number": "021000021",
"account_type": "checking",
"country": "US",
"payment_rails": "ach"
},
"meta": {
"preferred_contact_method": "email"
},
"created_at": "2025-09-12T08:00:00.000Z",
"updated_at": "2025-09-12T08:00:00.000Z"
}
}Creates a new recipient counterparty for the authenticated user or entity.
curl --request POST \
--url https://api.nuvion.tech/recipient-counterparties \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "individual",
"entity_relationship": "customer",
"name": "John Doe",
"email": "[email protected]",
"address": {
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country_code": "US",
"line_1": "123 Main St",
"line_2": "Apt 4B"
},
"account_details": {
"issuer": {
"code": "CHASE",
"name": "JPMorgan Chase Bank",
"short_name": "Chase"
},
"account_number": "1234567890",
"routing_number": "021000021",
"account_type": "checking",
"country": "US",
"payment_rails": "ach"
},
"meta": {
"preferred_contact_method": "email"
}
}
'{
"message": "Recipient counterparty created successfully",
"status": 201,
"data": {
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F3",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"type": "individual",
"entity_relationship": "customer",
"name": "John Doe",
"email": "[email protected]",
"address": {
"city": "New York",
"state": "NY",
"postal_code": "10001",
"country_code": "US",
"line_1": "123 Main St",
"line_2": "Apt 4B",
"line_3": null
},
"account_details": {
"issuer": {
"code": "CHASE",
"name": "JPMorgan Chase Bank",
"short_name": "Chase"
},
"account_number": "1234567890",
"routing_number": "021000021",
"account_type": "checking",
"country": "US",
"payment_rails": "ach"
},
"meta": {
"preferred_contact_method": "email"
},
"created_at": "2025-09-12T08:00:00.000Z",
"updated_at": "2025-09-12T08:00:00.000Z"
}
}Authorization header: Bearer {jwt or Secretkey}
The type of counterparty being created
The relationship between the entity and the counterparty
The name of the counterparty
The email address of the counterparty
The address information of the counterparty
Show child attributes
The city part of the address
The state or province part of the address
The postal or zip code part of the address
The country code part of the address
The first line of the address
The second line of the address (optional)
The third line of the address (optional)
The bank account or payment details for the counterparty
Show child attributes
Information about the bank or financial institution
The account number for the counterparty
The routing number for the bank
The type of bank account
The country where the account is located
The payment system to be used
Additional metadata about the counterparty
Created successfully
A descriptive message indicating the result of the operation
The status of the API operation (successful, error, failed, pending)
Contains the created counterparty details
Show child attributes
Unique identifier for the counterparty
Identifier of the entity the counterparty belongs to
The type of counterparty
Relationship between the entity and counterparty
Name of the counterparty
Email address of the counterparty
Physical address of the counterparty
Show child attributes
City name
State or province code
Postal or ZIP code
ISO country code
First line of address
Second line of address
Third line of address
Banking details of the counterparty
Show child attributes
Bank or financial institution details
Account number at the financial institution
Bank routing number
Type of bank account
Country code where the account is located
Payment network type
Timestamp when the counterparty was created
Timestamp when the counterparty was last updated