GET
/
pipelines
curl --request GET \
  --url https://api.sevalla.com/v2/pipelines \
  --header 'Authorization: Bearer <token>'
{
  "company": {
    "pipelines": {
      "items": [
        {
          "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
          "display_name": "first pipeline",
          "stages": [
            {
              "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
              "display_name": "Staging",
              "type": "standard"
            }
          ]
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

company
string
required
Example:

"54fb80af-576c-4fdc-ba4f-b596c83f15a1"

limit
number
default:10
Example:

10

offset
number
default:0
Example:

3

Response

200
application/json

Response object of pipelines requests

The response is of type object.