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=2
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=3",
    "previous": "https://demo.lizard.net/api/v4/clientconfigurations/?format=api",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/27/?format=api",
            "client_slug": "trainingscenario1",
            "client_config_url": "https://parramatta.lizard.net/dashboard/trainingscenario1",
            "created": "2019-06-25T07:32:27.143324Z",
            "last_modified": "2021-05-25T14:51:51.701648Z"
        },
        {
            "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"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/48/?format=api",
            "client_slug": "test",
            "client_config_url": "https://world.lizard.net/dashboard/test",
            "created": "2019-08-13T13:32:43.334763Z",
            "last_modified": "2020-05-14T07:36:45.602402Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/114/?format=api",
            "client_slug": "stedelijkWaterbalans",
            "client_config_url": "https://utrecht.lizard.net/dashboard/stedelijkWaterbalans",
            "created": "2024-08-09T11:40:49.850668Z",
            "last_modified": "2024-11-08T10:35:01.883299Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/55/?format=api",
            "client_slug": "parramatta-dashboard",
            "client_config_url": "https://demo.lizard.net/dashboard/parramatta-dashboard",
            "created": "2019-11-27T08:51:35.216564Z",
            "last_modified": "2019-11-27T08:52:52.617870Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/1/?format=api",
            "client_slug": "parramatta-dashboard",
            "client_config_url": "https://parramatta.lizard.net/dashboard/parramatta-dashboard",
            "created": "2019-06-25T07:32:27.143324Z",
            "last_modified": "2021-01-28T11:04:58.219790Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/44/?format=api",
            "client_slug": "ofp",
            "client_config_url": "https://ijgenzon.lizard.net/dashboard/ofp",
            "created": "2019-06-25T07:32:27.143324Z",
            "last_modified": "2021-07-12T12:27:38.097677Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/49/?format=api",
            "client_slug": "noraintiles",
            "client_config_url": "https://parramatta.lizard.net/dashboard/noraintiles",
            "created": "2019-08-21T15:45:45.718567Z",
            "last_modified": "2021-05-13T09:47:55.890996Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/78/?format=api",
            "client_slug": "inzicht_achterland",
            "client_config_url": "https://nens.lizard.net/dashboard/inzicht_achterland",
            "created": "2020-06-12T07:25:23.481641Z",
            "last_modified": "2020-06-12T07:54:37.255117Z"
        },
        {
            "url": "https://demo.lizard.net/api/v4/clientconfigurations/39/?format=api",
            "client_slug": "indicators",
            "client_config_url": "https://smartseeds.lizard.net/dashboard/indicators",
            "created": "2019-06-25T07:32:27.143324Z",
            "last_modified": "2020-05-14T07:36:45.542721Z"
        }
    ]
}