curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/email/response \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"email_id": 123,
"response": "<string>",
"client_id": 123
}'
{
"message": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Data needed to send an email response
The body is of type object
.
Successful operation
The response is of type object
.
curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/email/response \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"email_id": 123,
"response": "<string>",
"client_id": 123
}'
{
"message": "<string>"
}