Fetch Message Info by ID API example Request
### Retrieve Message Information by ID
This endpoint allows you to retrieve message information by providing the message ID.
- **URL**: `https://business.me-mate.net/whatsappbusiness/getmessgageinfobyid`
- **Method**: `POST`
#### Request Body
- Raw (application/json)
- `api_key`: Your API key
- `message_id`: The ID of the message
#### Response (application/json)
The response schema for this request is as follows:
``` json
{
"status": "boolean",
"message": {
"status": "string",
"error_message": "string or null"
}
}
```
- **`status`** (boolean) - This confirms that the API request was successful.
- **`message`** (object):
- **`status`** (string) - Indicates the message's current delivery status (e.g., it has been successfully delivered to the recipient).
- **`error_message`** (string or null) - No errors occurred during the process, so this field is empty.
Request
This endpoint expects an object.
api_key
message_id
Response
OK
status
message
