Skip to main content
PATCH
/
api
/
v3
/
donors
/
{donorId}
Update Donor
curl --request PATCH \
  --url https://server.stage.overflow.co/api/v3/donors/{donorId} \
  --header 'Content-Type: application/json' \
  --header 'x-client-id: <api-key>' \
  --data '
{
  "email": "[email protected]",
  "firstName": "John",
  "lastName": "Doe",
  "phone": "+1234567890"
}
'

Authorizations

x-client-id
string
header
required

Client ID for API authentication

Path Parameters

donorId
string
required

The ID of the donor to update.

Example:

"2ea1ae03ca521e437db76d76"

Body

application/json

Parameters to update a Donor Profile

email
string<email>

The email address of the donor

firstName
string

The first name of the donor

Example:

"John"

lastName
string

The last name of the donor

Example:

"Doe"

phone
string

The phone number of the donor

Example:

"+1234567890"

Response

Successfully updated Donor Profile