Description: This api is useful for the Email template status change to on/off.
Endpoint URL: https://apps.quickerlearning.com/api/emailtemplate/status
Note: Update Email template status to on/off for single or multiple templates.
Status = 0 Means Active, Status =1 means Inactived.
Without passing anything within the body, response will be current status of each email template.
Request Body For the Update single Email template Id.
{
“email_template_id”: [33],
“status” : “1”
}
Response Body For the Update single Email template Id.
{
“message”: “Email template status updated successfully.”,
“status”: 200,
}
Request Body For the Update multiple Email template Id.
{
“email_template_id”: [33,31],
“status” : “1”
}
Response Body For the Update single Email template Id.
{
“message”: “Email template status updated successfully..”,
“status”: 200,
}
