POST
/
frontend
/
signup_donor
/
{client_id}
/
{program_id}
/
{session_id}
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": "johndoe@example.com",
  "password": "password123"
}'
{
  "redirect_url": "frontend/donor_view/1/1/1",
  "status": "success"
}

Path Parameters

client_id
integer
required

The id of the client

program_id
integer
required

The id of the program

session_id
string
required

The id of the session

Body

application/json
Donor data
username
string
Example:

"johndoe"

email
string
Example:

"johndoe@example.com"

password
string
Example:

"password123"

Response

200
application/json
Successful operation
redirect_url
string
Example:

"frontend/donor_view/1/1/1"

status
string
Example:

"success"