POST
/
frontend
/
checkout
/
signup
/
{client_id}
/
{program_id}
/
{session_id}
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!"
}

Path Parameters

client_id
integer
required

The ID of the client

program_id
integer
required

The ID of the program

session_id
integer
required

The ID of the session

Body

application/json

Donor and donation details

The body is of type object.

Response

200
application/json

Successful operation

The response is of type object.