POST
/
admin
/
program
/
form
/
sponsorship
Add a sponsorship form to a program
curl --request POST \
  --url https://api.helpyousponsor.com/v1/admin/program/form/sponsorship \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "1",
  "sponsorship_form": "1",
  "client_id": "1"
}'
{
  "message": "Successfully Added Sponsorship To Program"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Data needed to add a sponsorship to a program

id
integer

The ID of the program.

Example:

"1"

sponsorship_form
integer
Example:

"1"

client_id
string

The ID of the client.

Example:

"1"

Response

Successfully added sponsorship to program

message
string
Example:

"Successfully Added Sponsorship To Program"