curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/program/emailset \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"id": 123,
"emailset_id": 123,
"client_id": "<string>"
}'
{
"message": "Successfully Added Email Set To Program"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Data needed to add an email set to a program
The body is of type object
.
Successfully added email set to program
The response is of type object
.
curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/program/emailset \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"id": 123,
"emailset_id": 123,
"client_id": "<string>"
}'
{
"message": "Successfully Added Email Set To Program"
}