Search sequences

Retrieves a list of sequences matching the given criteria. This operation doesn't support pagination.

Securityoidc-token or oauth2-client-credentials or oauth2-open-industrial-data or oauth2-auth-code
Request
Request Body schema: application/json

Retrieves a list of sequences matching the given criteria. This operation doesn't support pagination.

object (SequenceFilter)
object (SequenceSearch)
limit
integer <int32> [ 1 .. 1000 ]
Default: 100

Returns up to this many results.

Responses
200

Response with a list of sequences matching the given criteria.

post/sequences/search
Request samples
application/json
{
  • "filter": {
    • "name": "string",
    • "externalIdPrefix": "my.known.prefix",
    • "metadata": {
      },
    • "assetIds": [
      ],
    • "rootAssetIds": [
      ],
    • "assetSubtreeIds": [
      ],
    • "createdTime": {
      },
    • "lastUpdatedTime": {
      },
    • "dataSetIds": [
      ]
    },
  • "search": {
    • "name": "string",
    • "description": "string",
    • "query": "string"
    },
  • "limit": 100
}
Response samples
application/json
{
  • "items": [
    • {
      }
    ]
}