curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/donor/{hysform_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"client_id": "<string>",
"dn_donor_name": "donor name",
"username": "<string>",
"email": "<string>",
"notify_donor": 337,
"hysform_id": 1
}'
{
"message": "<string>",
"status": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The id of the donor form
Donor data
The body is of type object
.
Successful operation
The response is of type object
.
curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/donor/{hysform_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"client_id": "<string>",
"dn_donor_name": "donor name",
"username": "<string>",
"email": "<string>",
"notify_donor": 337,
"hysform_id": 1
}'
{
"message": "<string>",
"status": "<string>"
}