PATCH
/
recipients
/
{recipient_id}
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"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer bv_xxxxxxxxx, where bv_xxxxxxxxx is your API Key with Full access scope.

Path Parameters

recipient_id
string
required

The unique identifier of the recipient.

Body

application/json

Response

200
application/json

Recipient updated

The response is of type any.