get sms

Get sms

GET https://api.zuwinda.com/v1.2/message/sms

Query Parameters

Name
Type
Description

from

string

YYYY-MM-DD,

to

string

YYYY-MM-DD

page

number

page to what. default 1

perPage

number

showing data perpage. default 10

Headers

Name
Type
Description

x-access-key

string

Token key.

{
    "success": true,
    "count": 3,
    "page": 1,
    "perPage": 10,
    "data": [
        {
            "message_id": "5f66aff5f1fdc757be276ad4",
            "to": "08151529xxxx",
            "content": "Hello World!!",
            "type": "sms",
            "status": "sent",
            "schedule": false,
            "created_at": "2020-09-20 08:27:17",
            "updated_at": "2020-09-20 08:27:18"
        },
        {
            "message_id": "5f66af8bf1fdc757be276ad3",
            "to": "08151529xxxx",
            "content": "Hello World!!",
            "type": "sms",
            "status": "sent",
            "schedule": false,
            "created_at": "2020-09-20 08:25:31",
            "updated_at": "2020-09-20 08:26:15"
        },
        {
            "message_id": "5f66925df1fdc757be276ad2",
            "to": "08151529xxxx",
            "content": "Hello World!!",
            "type": "sms",
            "status": "sent",
            "schedule": false,
            "created_at": "2020-09-20 06:21:01",
            "updated_at": "2020-09-20 08:26:14"
        }
    ]
}

Last updated

Was this helpful?