curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/auto_emails/emailset \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"from": "jsmith@example.com",
"client_id": "<string>"
}'
{
"message": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Data for the new email set
The body is of type object
.
Successful operation
The response is of type object
.
curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/auto_emails/emailset \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"from": "jsmith@example.com",
"client_id": "<string>"
}'
{
"message": "<string>"
}