top of page

Welcome to Messalogy Docs

Get familiar with our APIs and technical resources in your favorite languages.

View an SMS

You can use Messalogy's SMS API to retrieve information of an existing inbound or outbound SMS message. You only need to supply the unique message id that was returned upon creation or receiving.

Parameters

Parameter

uid

Required

Type

Yes

String

Description

A unique random uid which is created on the Messalogy platform and is returned upon creation of the object.

Example request

PHP

curl -X GET https://panel.messalogy.com/api/v3/sms/606812e63f78b \

-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",

    "message": "sms data with all details",

}

If the request failed, an error object will be returned.

JSON

{

    "status": "error",

    "message": "A human-readable description of the error.",

}

bottom of page