curl --request POST \
--url https://api.helpyousponsor.com/v1/frontend/signup_donor/{client_id}/{program_id}/{session_id} \
--header 'Content-Type: application/json' \
--data '{
"username": "johndoe",
"email": "johndoe@example.com",
"password": "password123"
}'
{
"redirect_url": "frontend/donor_view/1/1/1",
"status": "success"
}
The id of the client
The id of the program
The id of the session
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/frontend/signup_donor/{client_id}/{program_id}/{session_id} \
--header 'Content-Type: application/json' \
--data '{
"username": "johndoe",
"email": "johndoe@example.com",
"password": "password123"
}'
{
"redirect_url": "frontend/donor_view/1/1/1",
"status": "success"
}