Skip to content

List the existing order-order restriction sets

Request

Retrieve order-order restriction sets using cursor-based paging (see the Cursor-based pagination documentation on the PTV Developer Portal for more details).

Security
clientCredentials
Query
cursorstring

The cursor of the page to retrieve. No cursor is needed to retrieve the first page.

limitinteger, (int32), [ 1 .. 1000 ]

The maximum amount of order-order restriction sets that should be returned in the response.

Default:100
Example:limit=100
curl -i -X GET \
  'https://developer.conundra.eu/_mock/apis/plannings/planning-api/settings/order-order-restriction-sets?cursor=string&limit=100' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

OK

Bodyapplication/json
dataArray of objects(OrderOrderRestrictionSetListSummary)required

Subset of order-order restriction sets matching the provided query, limited to the limit specified in the request.

cursorsobject(CursorsWithOnlyNext)required

Cursor that only supports next cursor navigation.

Response
{ "data": [ {} ], "cursors": { "next": "bmV4dF9fcGFnZQ" } }