API Endpoint #
https://app.text.lk/api/v3/contacts/{group_id}/all
HTTPParameters #
Parameter | Required | Type | Description |
group_id | Yes | string | Contact Groups uid |
Example request #
curl -X POST https://app.text.lk/api/v3/contacts/{group_id}/all \
-H 'Authorization: Bearer API_KEY' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
HTTPExample response #
Returns a contact object if the request was successful.
{
"status": "success",
"data": "contacts data with pagination",
}
HTTPIf the request fails, an error object will be returned.
{
"status": "error",
"message" : "A human-readable description of the error."
}
HTTP