API Endpoint #
https://app.text.lk/api/v3/contacts/
HTTPExample request #
curl -X GET https://app.text.lk/api/v3/contacts \
-H 'Authorization: Bearer API_KEY' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
HTTPExample Response #
Returns a contact object if the request is successful.
{
"status": "success",
"data": "group data with pagination",
}
HTTPIf the request fails, an error object will be returned.
{
"status": "error",
"message" : "A human-readable description of the error."
}
HTTP