Retrieves comprehensive details about a specific task, including its status, associated metadata, and progress, using the provided API key and Task GUID. This functionality enables users to track the progress and status of their bulk SMS tasks effectively.
POST
https://api.msg4.cloud.robeeta.com/Sms/ReadTaskInfo
Authorization: Api key
Header: Content-Type: application/json
Request Body:
Response Body:
StatusCode | Response |
---|---|
200 | OK |
1704 | Invalid ApiKey |
1708 | Invalid Task Guid |
500 | Unknown Error |
curl -X POST \ https://api.msg4.cloud.robeeta.com/Sms/ReadTaskInfo \ -H "Content-Type: application/json" \ -d '{ "ApiKey": "string", "TaskGuid": "string" }'
{ "Response": "OK", "StatusCode": 0, "TaskInfo": { "TaskName": "string", "TaskDate": "datetime", "CompletedDate": "datetime", "TaskResponse": "string", "TaskStatus": "string", "TaskGuid": "string" } }