curl --request PATCH \
--url https://api.nuvion.tech/recipient-counterparties/{recipientCpId} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "John Smith",
"email": "[email protected]",
"address": {
"city": "Brooklyn",
"state": "NY",
"postal_code": "11201",
"country_code": "US",
"line_1": "456 Park Ave",
"line_2": "Unit 7C"
},
"account_details": {
"account_number": "9876543210",
"account_type": "savings",
"payment_rails": "bank"
},
"meta": {
"preferred_contact_method": "sms",
"phone_number": "+15551234567"
}
}
'{
"message": "Recipient counterparty updated successfully",
"status": 200,
"data": {
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F3",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"type": "individual",
"entity_relationship": "customer",
"name": "John Smith",
"email": "[email protected]",
"address": {
"city": "Brooklyn",
"state": "NY",
"postal_code": "11201",
"country_code": "US",
"line_1": "456 Park Ave",
"line_2": "Unit 7C",
"line_3": null
},
"account_details": {
"issuer": {
"code": "CHASE",
"name": "JPMorgan Chase Bank",
"short_name": "Chase"
},
"account_number": "9876543210",
"routing_number": "021000021",
"account_type": "savings",
"country": "US",
"payment_rails": "bank"
},
"meta": {
"preferred_contact_method": "sms",
"phone_number": "+15551234567"
},
"created_at": "2025-09-12T08:00:00.000Z",
"updated_at": "2025-09-12T10:30:00.000Z"
}
}Updates an existing recipient counterparty for the authenticated user or entity.
curl --request PATCH \
--url https://api.nuvion.tech/recipient-counterparties/{recipientCpId} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "John Smith",
"email": "[email protected]",
"address": {
"city": "Brooklyn",
"state": "NY",
"postal_code": "11201",
"country_code": "US",
"line_1": "456 Park Ave",
"line_2": "Unit 7C"
},
"account_details": {
"account_number": "9876543210",
"account_type": "savings",
"payment_rails": "bank"
},
"meta": {
"preferred_contact_method": "sms",
"phone_number": "+15551234567"
}
}
'{
"message": "Recipient counterparty updated successfully",
"status": 200,
"data": {
"id": "01HJ5G6R7MXW5ZK2QD6YA8N9F3",
"entity_id": "01HJ5G6R7MXW5ZK2QD6YA8N9F4",
"type": "individual",
"entity_relationship": "customer",
"name": "John Smith",
"email": "[email protected]",
"address": {
"city": "Brooklyn",
"state": "NY",
"postal_code": "11201",
"country_code": "US",
"line_1": "456 Park Ave",
"line_2": "Unit 7C",
"line_3": null
},
"account_details": {
"issuer": {
"code": "CHASE",
"name": "JPMorgan Chase Bank",
"short_name": "Chase"
},
"account_number": "9876543210",
"routing_number": "021000021",
"account_type": "savings",
"country": "US",
"payment_rails": "bank"
},
"meta": {
"preferred_contact_method": "sms",
"phone_number": "+15551234567"
},
"created_at": "2025-09-12T08:00:00.000Z",
"updated_at": "2025-09-12T10:30:00.000Z"
}
}Authorization header: Bearer {jwt or Secretkey}
The unique identifier (ULID) of the recipient counterparty to update
The type of counterparty
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
The third line of the address
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
Updated successfully
A descriptive message indicating the result of the operation
The status of the API operation (successful, error, failed, pending)
Contains the updated 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