curl --request POST \
--url https://api.helpyousponsor.com/v1/frontend/checkout/signup/{client_id}/{program_id}/{session_id} \
--header 'Content-Type: application/json' \
--data '{
"signup_username": "donor123",
"email": "donor@gmail.com",
"signup_password": "password123",
"method_signup": "3",
"firstName": "John",
"lastName": "Doe",
"cardHolderName": "John Doe",
"dn_donor_name": "John Doe",
"paying_processing": "1",
"rememberMe": "false",
"token": "token123"
}'
{
"status": "success",
"redirect": "/frontend/donor_view/1/1/1",
"email": "donor@gmail.com",
"username": "donor123",
"message": "You have successfully signed up!"
}
The ID of the client
The ID of the program
The ID of the session
Donor and donation details
The body is of type object
.
Successful operation
The response is of type object
.
curl --request POST \
--url https://api.helpyousponsor.com/v1/frontend/checkout/signup/{client_id}/{program_id}/{session_id} \
--header 'Content-Type: application/json' \
--data '{
"signup_username": "donor123",
"email": "donor@gmail.com",
"signup_password": "password123",
"method_signup": "3",
"firstName": "John",
"lastName": "Doe",
"cardHolderName": "John Doe",
"dn_donor_name": "John Doe",
"paying_processing": "1",
"rememberMe": "false",
"token": "token123"
}'
{
"status": "success",
"redirect": "/frontend/donor_view/1/1/1",
"email": "donor@gmail.com",
"username": "donor123",
"message": "You have successfully signed up!"
}