Retrieve the status for the Batch Update Subscribers job, using the ID that is returned from the API.
| URL | https://api.enginemailer.com/restapi/subscriber/emsubscriber/batchUpdateStatus |
| Method | HTTP POST |
Table: Parameter
| Parameter name | Description | Column Type |
|---|---|---|
| ID | ImportID that is returned by the Batch Update Subscribers API | Integer |
Table: Data Definition for JSON
| Parameter name | Description | Column Type | Maximum Length | Required? |
|---|---|---|---|---|
| ID | ImportID that is returned by the Batch Update Subscribers API. | Integer |
Yes |
Request Example
Header
<APIKEY> - Value
Body
{
"ID": 1234
}
Response
Success Response
{
"Status": "Completed",
"StatusCode": "200"
}
OR
{
"Status": "Processing",
"StatusCode": "201"
}
Failed Response
{
"Status": "Records Not Exists",
"StatusCode": "404"
}
OR
{
"Status": "InternalServerError",
"StatusCode": "500"
}