List Derivers
GET/api/v1/derivers
List Derivers
Request
Query Parameters
size integer
Possible values: > 0
and <= 100
Default value:
100
nextToken string
sortBy string
Possible values: [id
, name
, createdAt
, updatedAt
, definition
, description
, startAt
, status
]
sortOrder string
Possible values: [asc
, desc
]
Default value:
asc
Responses
- 200
- 400
- 401
200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
size integerrequired
Possible values: > 0
Example:
100
data
object[]
required
id integerrequired
ID
of the Deriver
Possible values: > 0
Example:
1000
name stringrequired
Name of the Deriver
class definition
Example:
TestDeriver
definition stringrequired
description stringnullable
startAt date-timenullable
Example:
2025-01-01T00:00:00Z
status stringrequired
Possible values: [STARTING
, RUNNING
, STOPPED
, ERROR
]
next
object
token stringrequired
Example:
eyJjdXJzb3IiOjEsInRva2VuIjoiIn0K
href urirequired
Example:
https://api.apps.nor.tech/api/v1?size=10&sortBy=name&sortOrder=asc&nextToken=eyJjdXJzb3IiOjEsInRva2VuIjoiIn0K
{
"size": 100,
"data": [
{
"id": 1000,
"name": "TestDeriver",
"definition": "string",
"description": "string",
"startAt": "2025-01-01T00:00:00Z",
"status": "STARTING"
}
],
"next": {
"token": "eyJjdXJzb3IiOjEsInRva2VuIjoiIn0K",
"href": "https://api.apps.nor.tech/api/v1?size=10&sortBy=name&sortOrder=asc&nextToken=eyJjdXJzb3IiOjEsInRva2VuIjoiIn0K"
}
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
status stringrequired
Possible values: [Validation Error
]
errors
object[]
required
error stringrequired
location stringrequired
Possible values: [body
, query
, path
, headers
]
{
"status": "Validation Error",
"errors": [
{
"error": "string",
"location": "body"
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
status stringrequired
Possible values: [Unauthorized
]
{
"status": "Unauthorized"
}
Loading...