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": "[email protected]",
"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
Successful operation
Confirmation message
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": "[email protected]",
"client_id": "<string>"
}
'{
"message": "<string>"
}