Get SMS Message
https://core.hisend.hunnovate.com/api/v1/projects/{project_identifier}/sms/{sms_id}?api_key={api_key}
Get a single SMS message by ID
Path Parameters
project_identifier string required
The identifier or id of the project, for example project_name or 01jtk9f6xtp5bqycmj8x68040f, you can get it from the projects page on your dashboard
sms_id string required
ID of the SMS message, can be found in the response of the get many SMS endpoint or copy from the dashboard
Query Params
api_key string required
The api key from your dashboard
422 Error Response Example
{
"message": "Error getting SMS message",
}
200 Success Response Example
{
"data": {
"id": "01jtk9f6xtp5bqycmj8x68040f",
"phone": 1234567890,
"message": "Hello World",
},
"message": "SMS message retrieved successfully",
}