List all your customers

Show the details of all the customers under your account.

Request

Endpoint: /api/sipt/customers
Example: /api/sipt/customers
Method: GET
Headers: Accept: application/vnd.cloudlx.v1+json
Authorization: Bearer <access_token>

Response

Example:

                                
    {
        "customers": [
            {
                "id": 165,
                "name": "My Sipt Customer"
            },
            {
                "id": 166,
                "name": "My Second Sipt Customer"
            },
            ...
        ]
    }
                                
                            
id Description The id for the customer, used to perform actions on the customer
Type Number
Example 165
name Description The name of the customer
Type String
Example My SIPT Customer

Back to top