Skip to main content
GET
/
service-lines
List all service lines
curl --request GET \
  --url https://api.scrums.com/v1/service-lines \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "LIN-26-084729",
      "name": "Core Platform Squad",
      "workspace_id": "WS-26-000021",
      "organization_id": "ORG-26-090500",
      "product_line": "talent",
      "execution_model": "capacity",
      "billing_model": "monthly_retainer",
      "status": "active",
      "project_tags": [
        "PROJ-26-004281"
      ],
      "subscription_id": "SUB-26-001122",
      "config": {
        "sprint_length_days": 14
      },
      "started_at": "2026-01-15T09:00:00Z",
      "ends_at": null,
      "created_at": "2026-01-10T08:30:00Z",
      "updated_at": "2026-04-01T11:00:00Z"
    }
  ],
  "meta": {
    "cursor": "eyJpZCI6IkxJTi0yNi0wODQ3MjkifQ==",
    "has_more": false
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

workspace_id
string

Filter by workspace ID (WS-*).

organization_id
string

Filter by organization ID (ORG-*).

status
enum<string>

Filter by service line status.

Available options:
draft,
active,
paused,
closed,
terminated
cursor
string

Pagination cursor from a previous response.

limit
integer
default:20

Maximum number of results to return (1–100).

Required range: 1 <= x <= 100

Response

Paginated list of service lines.

data
object[]
meta
object
Last modified on April 15, 2026