Skip to main content
GET
/
v1
/
public
/
cases
/
pipelines
List Case Pipelines
curl --request GET \
  --url https://api.sanka.com/v1/public/cases/pipelines \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "internal_name": "<string>",
    "is_default": false,
    "order": 123,
    "stages": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "internal_value": "<string>",
        "score": 123,
        "order": 123
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

workspace_id
string | null

Response

OK

id
string<uuid> | null
name
string | null
internal_name
string | null
is_default
boolean
default:false
order
integer | null
stages
PublicCasePipelineStageSchema · object[]