POST
/
admin
/
program
/
form
curl --request POST \
  --url https://api.helpyousponsor.com/v1/admin/program/form \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": 123,
  "submit_form_type": "<string>",
  "submit_form": 123,
  "client_id": "<string>"
}'
{
  "message": "Successfully Added Submit Form 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 submit form to a program

The body is of type object.

Response

200
application/json

Successfully added submit form to program

The response is of type object.