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

The body is of type object.

Response

200
application/json

Successful operation

The response is of type object.