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/?format=api&page=5
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 43,
    "next": null,
    "previous": "https://demo.lizard.net/api/v4/clientconfigurations/?format=api&page=4",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/69/?format=api",
            "client_slug": "SDG",
            "client_config_url": "https://world.lizard.net/dashboard/SDG",
            "created": "2020-01-06T14:13:00.913572Z",
            "last_modified": "2020-05-14T07:36:45.713767Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/73/?format=api",
            "client_slug": "Peilbeheer",
            "client_config_url": "https://hunzeenaas.lizard.net/dashboard/Peilbeheer",
            "created": "2020-04-06T07:45:13.603646Z",
            "last_modified": "2022-02-18T09:22:17.498476Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/74/?format=api",
            "client_slug": "Boezembeheer",
            "client_config_url": "https://hunzeenaas.lizard.net/dashboard/Boezembeheer",
            "created": "2020-04-08T14:01:15.811748Z",
            "last_modified": "2023-08-24T13:48:34.208731Z"
        }
    ]
}