Show details of a customer

Show the details of a customer already added to your account.

Request

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

Response

Example:

                                
    {
        "id": 165,
        "name": "My 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