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

The ID of the client

id
integer

The ID of the program

settings_id
integer

The ID of the settings

Response

200
application/json
Successfully added settings to program
message
string
Example:

"Successfully Added Settings To Program"