List all Pipelines


GET /pipelines/

Authorization Header

  • Bearer token: OAuth 2.0 API access token. 

Parameters

  • start: offset for paging (optional)
  • limit: number of pipelines items per page (optional)
  • direction: Sort records in ascending ("1") or descending ("-1") order. Default value: "1".
  • format: json or xml. This will override the Request Accept header.
  • human: true or false. It causes the response to be in a structured, more human-readible form. This is useful when calling the API through curl or a browser.
  • show_null: true or false. If set to "true", the response will contain also keys that are not set to a value.
  • expand_all: true or false. Recursively look up referenced objects (here: user id) and embed the respective json as a nested object directly into the response.

Example 

GET /pipelines
curl -H "Authorization: Bearer um9VmyJKTPGFqpkL_THjGE5rkXqfURDYqQ8MTBVidG3PtwkfABIdx6s_z9WlFl4_j" "https://api.xvid.com/v1/pipelines/?human=true&show_null=true"
{
  "pipelines": [
    {
      "name": "Default Pipeline",
      "description": "Default Pipeline",
      "default_object_timeout": null,
      "cancel_timeout": null,
      "input_download_dir": null,
      "image_download_dir": null,
      "download_options": {
        "https_certificate_check": null
      },
      "output_upload_dir": null,
      "image_upload_dir": null,
      "upload_options": {
        "s3_allow_read": null,
        "s3_reduced_redundancy": null
      },
      "store_options": {
        "mode": null
      },
      "ping_urls": {
        "error": null,
        "warning": null,
        "started": null,
        "finished": null
      },
      "file": {
        "id": "5475dc68e4b00d2b0f7a6102",
        "href": "https://api.xvid.com/v1/files/5475dc68e4b00d2b0f7a6102"
      },
      "version": 1,
      "user": {
        "id": "5475dc68e4b00d2b0f7a60fe",
        "href": "https://api.xvid.com/v1/users/5475dc68e4b00d2b0f7a60fe"
      },
      "created_at": 1417010280925,
      "updated_at": 1417010280925,
      "id": "5475dc68e4b00d2b0f7a6100",
      "href": "https://api.xvid.com/v1/pipelines/5475dc68e4b00d2b0f7a6100"
    }
  ],
  "total": 1,
  "start": 0,
  "limit": 1,
  "first": {
    "href": "https://api.xvid.com/v1/pipelines/?start=0&limit=1&human=true&show_null=true"
  },
  "last": {
    "href": "https://api.xvid.com/v1/pipelines/?start=0&limit=1&human=true&show_null=true"
  },
  "next": {
    "href": "https://api.xvid.com/v1/pipelines/?start=0&limit=1&human=true&show_null=true"
  },
  "prev": {
    "href": "https://api.xvid.com/v1/pipelines/?start=0&limit=1&human=true&show_null=true"
  }
}
  • No labels