POST
/
admin
/
program
/
form
/
sponsorship
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

The body is of type object.

Response

200
application/json

Successfully added sponsorship to program

The response is of type object.