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
signup_username
string
Example:

"donor123"

email
string
Example:

"donor@gmail.com"

signup_password
string
Example:

"password123"

method_signup
string
Example:

"3"

firstName
string
Example:

"John"

lastName
string
Example:

"Doe"

cardHolderName
string
Example:

"John Doe"

dn_donor_name
string
Example:

"John Doe"

paying_processing
string
Example:

"1"

rememberMe
boolean
Example:

"false"

token
string
Example:

"token123"

Response

200
application/json
Successful operation
status
string
Example:

"success"

redirect
string
Example:

"/frontend/donor_view/1/1/1"

email
string
Example:

"donor@gmail.com"

username
string
Example:

"donor123"

message
string
Example:

"You have successfully signed up!"