Skip to main content
PUT
/
api
/
recipients
/
{id}
Update Recipient
curl --request PUT \
  --url https://api.example.com/api/recipients/{id} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "businessName": "<string>",
  "country": "<string>",
  "currency": "<string>"
}
'
{
  "id": "rec_abc123",
  "businessName": "Acme Malaysia Updated",
  "status": "active"
}
Authorization
string
required
Bearer token from Auth0
id
string
required
Recipient ID
businessName
string
Recipient business name
country
string
Country code
currency
string
Currency code
{
  "id": "rec_abc123",
  "businessName": "Acme Malaysia Updated",
  "status": "active"
}