List all service lines
curl --request GET \
--url https://api.scrums.com/v1/service-lines \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.scrums.com/v1/service-lines"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.scrums.com/v1/service-lines', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.scrums.com/v1/service-lines",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.scrums.com/v1/service-lines"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.scrums.com/v1/service-lines")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scrums.com/v1/service-lines")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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
}
}{
"code": "invalid_request",
"message": "workspace_id is required.",
"status": 400
}{
"code": "unauthorized",
"message": "Bearer token is missing or expired.",
"status": 401
}{
"code": "forbidden",
"message": "You do not have access to this resource.",
"status": 403
}Service Lines
List Service Lines
Returns a paginated list of Service Lines the caller has access to.
GET
/
service-lines
List all service lines
curl --request GET \
--url https://api.scrums.com/v1/service-lines \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.scrums.com/v1/service-lines"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.scrums.com/v1/service-lines', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.scrums.com/v1/service-lines",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.scrums.com/v1/service-lines"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.scrums.com/v1/service-lines")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scrums.com/v1/service-lines")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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
}
}{
"code": "invalid_request",
"message": "workspace_id is required.",
"status": 400
}{
"code": "unauthorized",
"message": "Bearer token is missing or expired.",
"status": 401
}{
"code": "forbidden",
"message": "You do not have access to this resource.",
"status": 403
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Filter by workspace ID (WS-*).
Filter by organization ID (ORG-*).
Filter by service line status.
Available options:
draft, active, paused, closed, terminated Pagination cursor from a previous response.
Maximum number of results to return (1–100).
Required range:
1 <= x <= 100Last modified on April 15, 2026
Was this page helpful?
⌘I