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"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Data needed to add settings to a program
The body is of type object
.
Successfully added settings to program
The response is of type object
.
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"
}