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": "[email protected]",
"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": "[email protected]",
"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
"donor123"
"password123"
"3"
"John"
"Doe"
"John Doe"
"John Doe"
"1"
"false"
"token123"
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": "[email protected]",
"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": "[email protected]",
"username": "donor123",
"message": "You have successfully signed up!"
}