Advanced list of limit values.

Retrieves limit values using a filter.

Only the prefix operator is supported.

Securityoidc-token or oauth2-client-credentials or oauth2-open-industrial-data or oauth2-auth-code
Request
header Parameters
cdf-version
required
string
Value: "20230101-beta"
Request Body schema: application/json
object

Filter to apply to the list operation. To retrieve all limits for a specific service, use the "prefix" operator where the property is the limit's key, e.g., {"prefix": {"property": ["limitId"], "value": "atlas."}}

limit
integer <= 1000
Default: 1000

Maximum number of items to return.

cursor
string

Cursor to use for paging through results.

Responses
200

Filtered limits.

401

The response for a failed request.

post/limits/values/list
Request samples
application/json
{
  • "filter": {
    • "prefix": {
      }
    },
  • "limit": 1000,
  • "cursor": "string"
}
Response samples
application/json
{
  • "items": [
    • {
      },
    • {
      }
    ],
  • "nextCursor": "eyJjdXJzb3IiOiAiMTIzNDU2In0="
}