Endpoint for Client Configuration (read-only).

DEPRECATED. Use /api/v4/clientconfigs.

Query parameters:

client_slug Text filter on the name field. All text field filter methods, like startswith, endswith, icontains are supported.

ordering Show the results in a specific order. You can order them by client_slug or portal__domain. Add a '-' in front of client_slug or portal__domain to get the reversed order.

created: Temporal filter on created. Supports various lookup types (exact, lt, lte, gt, gte; created__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

last_modified: Temporal filter on last_modified. Supports various lookup types (exact, lt, lte, gt, gte; last_modified__exact by default). Filter values should be specified in ISO 8601 YYYY-MM-DDThh:mm:ssZ format.

Examples

?client_slug__icontains=lizard

?client_slug=DDSC

?client_slug__startswith=lizard

?portal__domain__icontains=lizard

?ordering=-client_slug

?ordering=-portal__domain

?created__gte=2017-01-01T00:00:00Z

?last_modified__lt=2018-01-01T00:00:00Z
GET /api/v4/clientconfigurations/31/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "url": "https://demo.lizard.net/api/v4/clientconfigurations/31/?format=api",
    "client_slug": "testdashboard",
    "client_config_url": "https://parramatta.lizard.net/dashboard/testdashboard",
    "created": "2019-06-25T07:32:27.143324Z",
    "last_modified": "2019-06-25T07:32:27.204155Z"
}