cURL
curl -X PATCH https://api.bodhveda.com/recipients/recipient_123 \ -H "Authorization: Bearer bv_xxxxxxxxx" \ -H "Content-Type: application/json" \ -d '{ "name": "Elon Musk" }'
{ "message": "Recipient updated", "data": { "id": "recipient_123", "name": "Elon Musk", "created_at": "2025-11-07T05:31:56Z", "updated_at": "2025-11-07T06:00:00Z" } }
Update the name of a recipient.
Bearer authentication header of the form Bearer bv_xxxxxxxxx, where bv_xxxxxxxxx is your API Key with Full access scope.
Bearer bv_xxxxxxxxx
bv_xxxxxxxxx
Full access
The unique identifier of the recipient.
Recipient updated
The response is of type any.
any