Query all datasets and jobs
Returns one or more datasets and jobs of your query.
Query Parameters
Default value: 100
The number of results to return from offset.
Possible values: <= 1024 characters
Match jobs or datasets within the given namespace.
Possible values: Value must match regular expression YYYY-MM-DD
Match jobs or datasets before YYYY-MM-DD.
Possible values: Value must match regular expression YYYY-MM-DD
Match jobs or datasets after YYYY-MM-DD.
- 200
 
OK
Schema
- Array [
 - ]
 
Total number of search results.
results object[]
Possible values: [DATASET, JOB]
The type of search result.
The name of the dataset or job.
An ISO-8601 timestamp representing the date/time the dataset or job was updated.
The namespace of the dataset or job.
The ID of the node. A node can either be a dataset node or a job node. The format of nodeId for dataset is dataset:<namespace_of_dataset>:<name_of_the_dataset> and for job is job:<namespace_of_the_job>:<name_of_the_job>.
{
  "totalCount": 1,
  "results": [
    {
      "type": "DATASET",
      "name": "public.delivery_7_days",
      "updatedAt": "2019-05-09T19:49:24.201361Z",
      "namespace": "food_delivery",
      "nodeId": "dataset:food_delivery:public.delivery_7_days"
    }
  ]
}