top of page
Welcome to Messalogy Docs
Get familiar with our APIs and technical resources in your favorite languages.
Example request
PHP
curl -X GET https://panel.messalogy.com/api/v3/sms \
-H 'Authorization: Bearer Unique***Token' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
Returns
Returns a contact object if the request was successful.
JSON
{
"status": "success",
"data": "sms reports with pagination",
}
If the request failed, an error object will be returned.
JSON
{
"status": "error",
"message": "A human-readable description of the error.",
}
bottom of page