List All Contacts

Getting all contacts

Fetching all contacts an returning them as an array of Contact Object

GET https://smsverification.xyz/api/v2/sender/contacts

Headers

NameTypeDescription

Authentication*

String

{
    "status": "success",
    "data": {
        "contacts": [{
            "id": 1,
            "name": "Name",
            "number": "+441134960620",
            "created_at": "2023-02-22 15:01:45"
        }]
    }
}

Last updated