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=3
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 43,
    "next": "https://demo.lizard.net/api/v4/clientconfigurations/?format=api&page=4",
    "previous": "https://demo.lizard.net/api/v4/clientconfigurations/?format=api&page=2",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/33/?format=api",
            "client_slug": "hittestress",
            "client_config_url": "https://demo.lizard.net/dashboard/hittestress",
            "created": "2019-06-25T07:32:27.143324Z",
            "last_modified": "2021-01-28T10:58:55.204232Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/46/?format=api",
            "client_slug": "geopotato",
            "client_config_url": "https://bangladesh.lizard.net/dashboard/geopotato",
            "created": "2019-07-30T07:35:07.934401Z",
            "last_modified": "2020-05-14T07:36:45.731732Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/79/?format=api",
            "client_slug": "edagrapportage",
            "client_config_url": "https://utrecht.lizard.net/dashboard/edagrapportage",
            "created": "2020-07-14T14:58:39.508557Z",
            "last_modified": "2024-02-27T12:14:29.989204Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/52/?format=api",
            "client_slug": "datalab",
            "client_config_url": "https://nens.lizard.net/dashboard/datalab",
            "created": "2019-11-20T07:00:21.301307Z",
            "last_modified": "2021-07-12T11:04:35.039712Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/9/?format=api",
            "client_slug": "dashboard",
            "client_config_url": "https://spiceup.lizard.net/dashboard/dashboard",
            "created": "2019-06-25T07:32:27.143324Z",
            "last_modified": "2020-12-01T10:12:30.661689Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/50/?format=api",
            "client_slug": "dashboard",
            "client_config_url": "https://noorderzijlvest.lizard.net/dashboard/dashboard",
            "created": "2019-10-25T06:56:41.392433Z",
            "last_modified": "2020-05-14T07:36:45.638086Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/5/?format=api",
            "client_slug": "dashboard",
            "client_config_url": "https://hhnk.lizard.net/dashboard/dashboard",
            "created": "2019-06-25T07:32:27.143324Z",
            "last_modified": "2021-09-06T14:25:10.631617Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/32/?format=api",
            "client_slug": "dashboard",
            "client_config_url": "https://demo.lizard.net/dashboard/dashboard",
            "created": "2019-06-25T07:32:27.143324Z",
            "last_modified": "2020-05-14T07:36:45.558107Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/11/?format=api",
            "client_slug": "dashboard",
            "client_config_url": "https://logic.lizard.net/dashboard/dashboard",
            "created": "2019-06-25T07:32:27.143324Z",
            "last_modified": "2024-03-12T07:31:43.031447Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/81/?format=api",
            "client_slug": "dOverstortrapportage",
            "client_config_url": "https://utrecht.lizard.net/dashboard/dOverstortrapportage",
            "created": "2020-08-19T08:47:48.438950Z",
            "last_modified": "2025-02-11T15:35:22.948384Z"
        }
    ]
}