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": "[email protected]",
"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
"johndoe"
"password123"
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": "[email protected]",
"password": "password123"
}
'{
"redirect_url": "frontend/donor_view/1/1/1",
"status": "success"
}