List All Orders

Getting all orders

Fetching all orders

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

Returning an array of Orders

Headers

{
    "status": "success",
    "data": {
        "orders": [{
            "id": 1,
            "recipient": "+441134960620",
            "message": "This is a test message coded by the team",
            "price": 0.125,
            "date": "2023-02-23 15:43:45",
            "status": "Delivered"
        }]
    }
}

Last updated