Submit an ODS scoping request
curl --request POST \
--url https://api.scrums.com/v1/capabilities/ods/requests \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"organization_id": "ORG-26-090500",
"workspace_id": "WS-26-000021",
"subscription_id": "SUB-26-001122",
"project_tags": [
"PROJ-26-004281"
],
"title": "Rebuild checkout flow with React 19",
"description": "Migrate the existing checkout service to a React 19 Server Components architecture.",
"desired_outcome": "50% reduction in checkout load time and improved Core Web Vitals.",
"acceptance_criteria": [
"All existing tests pass",
"LCP < 1.5s on 4G",
"Zero regressions in order completion rate"
],
"timeline_weeks": 8,
"budget_max": 24000,
"currency": "USD"
}
'import requests
url = "https://api.scrums.com/v1/capabilities/ods/requests"
payload = {
"organization_id": "ORG-26-090500",
"workspace_id": "WS-26-000021",
"subscription_id": "SUB-26-001122",
"project_tags": ["PROJ-26-004281"],
"title": "Rebuild checkout flow with React 19",
"description": "Migrate the existing checkout service to a React 19 Server Components architecture.",
"desired_outcome": "50% reduction in checkout load time and improved Core Web Vitals.",
"acceptance_criteria": ["All existing tests pass", "LCP < 1.5s on 4G", "Zero regressions in order completion rate"],
"timeline_weeks": 8,
"budget_max": 24000,
"currency": "USD"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
organization_id: 'ORG-26-090500',
workspace_id: 'WS-26-000021',
subscription_id: 'SUB-26-001122',
project_tags: ['PROJ-26-004281'],
title: 'Rebuild checkout flow with React 19',
description: 'Migrate the existing checkout service to a React 19 Server Components architecture.',
desired_outcome: '50% reduction in checkout load time and improved Core Web Vitals.',
acceptance_criteria: [
'All existing tests pass',
'LCP < 1.5s on 4G',
'Zero regressions in order completion rate'
],
timeline_weeks: 8,
budget_max: 24000,
currency: 'USD'
})
};
fetch('https://api.scrums.com/v1/capabilities/ods/requests', 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/capabilities/ods/requests",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'organization_id' => 'ORG-26-090500',
'workspace_id' => 'WS-26-000021',
'subscription_id' => 'SUB-26-001122',
'project_tags' => [
'PROJ-26-004281'
],
'title' => 'Rebuild checkout flow with React 19',
'description' => 'Migrate the existing checkout service to a React 19 Server Components architecture.',
'desired_outcome' => '50% reduction in checkout load time and improved Core Web Vitals.',
'acceptance_criteria' => [
'All existing tests pass',
'LCP < 1.5s on 4G',
'Zero regressions in order completion rate'
],
'timeline_weeks' => 8,
'budget_max' => 24000,
'currency' => 'USD'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.scrums.com/v1/capabilities/ods/requests"
payload := strings.NewReader("{\n \"organization_id\": \"ORG-26-090500\",\n \"workspace_id\": \"WS-26-000021\",\n \"subscription_id\": \"SUB-26-001122\",\n \"project_tags\": [\n \"PROJ-26-004281\"\n ],\n \"title\": \"Rebuild checkout flow with React 19\",\n \"description\": \"Migrate the existing checkout service to a React 19 Server Components architecture.\",\n \"desired_outcome\": \"50% reduction in checkout load time and improved Core Web Vitals.\",\n \"acceptance_criteria\": [\n \"All existing tests pass\",\n \"LCP < 1.5s on 4G\",\n \"Zero regressions in order completion rate\"\n ],\n \"timeline_weeks\": 8,\n \"budget_max\": 24000,\n \"currency\": \"USD\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.scrums.com/v1/capabilities/ods/requests")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"organization_id\": \"ORG-26-090500\",\n \"workspace_id\": \"WS-26-000021\",\n \"subscription_id\": \"SUB-26-001122\",\n \"project_tags\": [\n \"PROJ-26-004281\"\n ],\n \"title\": \"Rebuild checkout flow with React 19\",\n \"description\": \"Migrate the existing checkout service to a React 19 Server Components architecture.\",\n \"desired_outcome\": \"50% reduction in checkout load time and improved Core Web Vitals.\",\n \"acceptance_criteria\": [\n \"All existing tests pass\",\n \"LCP < 1.5s on 4G\",\n \"Zero regressions in order completion rate\"\n ],\n \"timeline_weeks\": 8,\n \"budget_max\": 24000,\n \"currency\": \"USD\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scrums.com/v1/capabilities/ods/requests")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"organization_id\": \"ORG-26-090500\",\n \"workspace_id\": \"WS-26-000021\",\n \"subscription_id\": \"SUB-26-001122\",\n \"project_tags\": [\n \"PROJ-26-004281\"\n ],\n \"title\": \"Rebuild checkout flow with React 19\",\n \"description\": \"Migrate the existing checkout service to a React 19 Server Components architecture.\",\n \"desired_outcome\": \"50% reduction in checkout load time and improved Core Web Vitals.\",\n \"acceptance_criteria\": [\n \"All existing tests pass\",\n \"LCP < 1.5s on 4G\",\n \"Zero regressions in order completion rate\"\n ],\n \"timeline_weeks\": 8,\n \"budget_max\": 24000,\n \"currency\": \"USD\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "OREQ-26-000041",
"status": "scoping",
"title": "Rebuild checkout flow with React 19",
"scope_id": null,
"created_at": "2026-04-15T09:05:00Z"
}
}{
"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
}ODS
Submit an ODS request
Creates a new On-Demand Solutions request to begin the scoping and commercials process.
POST
/
capabilities
/
ods
/
requests
Submit an ODS scoping request
curl --request POST \
--url https://api.scrums.com/v1/capabilities/ods/requests \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"organization_id": "ORG-26-090500",
"workspace_id": "WS-26-000021",
"subscription_id": "SUB-26-001122",
"project_tags": [
"PROJ-26-004281"
],
"title": "Rebuild checkout flow with React 19",
"description": "Migrate the existing checkout service to a React 19 Server Components architecture.",
"desired_outcome": "50% reduction in checkout load time and improved Core Web Vitals.",
"acceptance_criteria": [
"All existing tests pass",
"LCP < 1.5s on 4G",
"Zero regressions in order completion rate"
],
"timeline_weeks": 8,
"budget_max": 24000,
"currency": "USD"
}
'import requests
url = "https://api.scrums.com/v1/capabilities/ods/requests"
payload = {
"organization_id": "ORG-26-090500",
"workspace_id": "WS-26-000021",
"subscription_id": "SUB-26-001122",
"project_tags": ["PROJ-26-004281"],
"title": "Rebuild checkout flow with React 19",
"description": "Migrate the existing checkout service to a React 19 Server Components architecture.",
"desired_outcome": "50% reduction in checkout load time and improved Core Web Vitals.",
"acceptance_criteria": ["All existing tests pass", "LCP < 1.5s on 4G", "Zero regressions in order completion rate"],
"timeline_weeks": 8,
"budget_max": 24000,
"currency": "USD"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
organization_id: 'ORG-26-090500',
workspace_id: 'WS-26-000021',
subscription_id: 'SUB-26-001122',
project_tags: ['PROJ-26-004281'],
title: 'Rebuild checkout flow with React 19',
description: 'Migrate the existing checkout service to a React 19 Server Components architecture.',
desired_outcome: '50% reduction in checkout load time and improved Core Web Vitals.',
acceptance_criteria: [
'All existing tests pass',
'LCP < 1.5s on 4G',
'Zero regressions in order completion rate'
],
timeline_weeks: 8,
budget_max: 24000,
currency: 'USD'
})
};
fetch('https://api.scrums.com/v1/capabilities/ods/requests', 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/capabilities/ods/requests",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'organization_id' => 'ORG-26-090500',
'workspace_id' => 'WS-26-000021',
'subscription_id' => 'SUB-26-001122',
'project_tags' => [
'PROJ-26-004281'
],
'title' => 'Rebuild checkout flow with React 19',
'description' => 'Migrate the existing checkout service to a React 19 Server Components architecture.',
'desired_outcome' => '50% reduction in checkout load time and improved Core Web Vitals.',
'acceptance_criteria' => [
'All existing tests pass',
'LCP < 1.5s on 4G',
'Zero regressions in order completion rate'
],
'timeline_weeks' => 8,
'budget_max' => 24000,
'currency' => 'USD'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.scrums.com/v1/capabilities/ods/requests"
payload := strings.NewReader("{\n \"organization_id\": \"ORG-26-090500\",\n \"workspace_id\": \"WS-26-000021\",\n \"subscription_id\": \"SUB-26-001122\",\n \"project_tags\": [\n \"PROJ-26-004281\"\n ],\n \"title\": \"Rebuild checkout flow with React 19\",\n \"description\": \"Migrate the existing checkout service to a React 19 Server Components architecture.\",\n \"desired_outcome\": \"50% reduction in checkout load time and improved Core Web Vitals.\",\n \"acceptance_criteria\": [\n \"All existing tests pass\",\n \"LCP < 1.5s on 4G\",\n \"Zero regressions in order completion rate\"\n ],\n \"timeline_weeks\": 8,\n \"budget_max\": 24000,\n \"currency\": \"USD\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.scrums.com/v1/capabilities/ods/requests")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"organization_id\": \"ORG-26-090500\",\n \"workspace_id\": \"WS-26-000021\",\n \"subscription_id\": \"SUB-26-001122\",\n \"project_tags\": [\n \"PROJ-26-004281\"\n ],\n \"title\": \"Rebuild checkout flow with React 19\",\n \"description\": \"Migrate the existing checkout service to a React 19 Server Components architecture.\",\n \"desired_outcome\": \"50% reduction in checkout load time and improved Core Web Vitals.\",\n \"acceptance_criteria\": [\n \"All existing tests pass\",\n \"LCP < 1.5s on 4G\",\n \"Zero regressions in order completion rate\"\n ],\n \"timeline_weeks\": 8,\n \"budget_max\": 24000,\n \"currency\": \"USD\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scrums.com/v1/capabilities/ods/requests")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"organization_id\": \"ORG-26-090500\",\n \"workspace_id\": \"WS-26-000021\",\n \"subscription_id\": \"SUB-26-001122\",\n \"project_tags\": [\n \"PROJ-26-004281\"\n ],\n \"title\": \"Rebuild checkout flow with React 19\",\n \"description\": \"Migrate the existing checkout service to a React 19 Server Components architecture.\",\n \"desired_outcome\": \"50% reduction in checkout load time and improved Core Web Vitals.\",\n \"acceptance_criteria\": [\n \"All existing tests pass\",\n \"LCP < 1.5s on 4G\",\n \"Zero regressions in order completion rate\"\n ],\n \"timeline_weeks\": 8,\n \"budget_max\": 24000,\n \"currency\": \"USD\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "OREQ-26-000041",
"status": "scoping",
"title": "Rebuild checkout flow with React 19",
"scope_id": null,
"created_at": "2026-04-15T09:05:00Z"
}
}{
"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.
Body
application/json
Example:
"ORG-26-090500"
Example:
"WS-26-000021"
Example:
"Rebuild checkout flow with React 19"
Example:
"Migrate the existing checkout service to a React 19 Server Components architecture."
Example:
"50% reduction in checkout load time and improved Core Web Vitals."
Example:
"SUB-26-001122"
Example:
["PROJ-26-004281"]
Example:
[
"All existing tests pass",
"LCP < 1.5s on 4G",
"Zero regressions in order completion rate"
]
Example:
8
Example:
24000
Example:
"USD"
Response
The newly created ODS request.
Show child attributes
Show child attributes
Last modified on April 15, 2026
Was this page helpful?
⌘I