PUT
/
frontend
/
donor
/
dashboard
/
details
/
{client_id}
/
{program_id}
/
{session_id}
curl --request PUT \
  --url https://api.helpyousponsor.com/v1/frontend/donor/dashboard/details/{client_id}/{program_id}/{session_id} \
  --header 'Content-Type: application/json' \
  --header 'session_id: <api-key>' \
  --data '{
  "dn_donor_name": "<string>",
  "username": "<string>",
  "email": "<string>",
  "password": "<string>",
  "do_not_email": "1",
  "field": "<string>"
}'
{
  "status": "success",
  "redirect": "<string>"
}

Authorizations

session_id
string
header
required

Use a session id to authenticate

Path Parameters

client_id
integer
required

Client ID associated with the donor

program_id
integer
required

Program ID associated with the donor

session_id
string
required

Session ID for the donor

Body

application/json
Donor's updated information
dn_donor_name
string
username
string
email
string
password
string
do_not_email
integer
Example:

"1"

field
string

Response

200
application/json
Donor information updated successfully
status
string
Example:

"success"

redirect
string