Lookup SMS Message
GET or POST Request
Lookup message details by message UUID
curl https://v1.api19.com/sms/lookup \
-d 'key=api_token' \
-d 'uuid=550e8400-e29b-41d4-a716-446655440000'curl https://v1.api19.com/sms/lookup?key=apikey&uuid=550e8400-e29b-41d4-a716-446655440000{
"status": "ok",
"data": {
"insert_date": "string",
"user_id": "string",
"cost": "string",
"surcharge": "string",
"src": "string",
"dst": "string",
"message": "string",
"direction": "string",
"msg_type": "string",
"service_type": "string"
}
}
OR
{
"status": "error",
"error": "not found"
}Parameters
uuid(required) - Message UUID
Last updated