getStatus
GET
/getStatus/APIKEYThis method retrieves the status of a message ID.
The getStatus
API method allows users to retrieve the status of a sent message by providing its unique ID. This method accepts a single input parameter called id
, which represents the ID of the message that was sent. By supplying this ID, users can query the API to obtain details about the message's status, including the date it was sent and the recipient's phone number. This functionality enables users to monitor the progress and delivery status of their messages, providing valuable insights into their messaging activities.
Request
Query Params
id
string
required
Example:
23145
Request samples
Responses
getStatus(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
status
string
required
statusInfo
string
required
id
string
required
phonenumber
string
required
text
string
required
created
string
required
execute
string
required
delivery
string
required
ExamplegetStatus
{
"status": "OK",
"statusInfo": "Message successfully sent",
"id": "23145",
"phonenumber": "15551234567",
"text": "This is a test from WhatsiPlus",
"created": "2024-04-30 11:48:35",
"execute": "2024-04-30 11:54:51",
"delivery": "read"
}
Last modified: 5 months ago