> ## Documentation Index
> Fetch the complete documentation index at: https://www.scrums.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Submit an ODS request

> Creates a new On-Demand Solutions request to begin the scoping and commercials process.



## OpenAPI

````yaml POST /capabilities/ods/requests
openapi: 3.1.0
info:
  title: Scrums.com API
  version: 1.0.0
  description: >-
    The Scrums.com Software Engineering Orchestration Platform (SEOP) REST API.
    Every capability — talent, managed delivery, ODS, infrastructure,
    intelligence, and agents — operates through a Service Line (LIN-*). Base
    URL: https://api.scrums.com/v1
servers:
  - url: https://api.scrums.com/v1
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Service Lines
    description: Manage SEOP Service Lines (LIN-*) across all product types.
  - name: Organizations
    description: Top-level account containers (ORG-*).
  - name: Workspaces
    description: Team workspaces nested within an organization (WS-*).
  - name: AI Agent Gateway
    description: Trigger and monitor AI agent runs (AGT-*, RUN-*).
  - name: Observability & Metrics
    description: Health scores, risk signals, and delivery metrics.
  - name: ODS
    description: On-Demand Solutions scoping and request management.
  - name: Talent Marketplace
    description: Submit and manage vetted talent placement requests.
paths:
  /capabilities/ods/requests:
    post:
      tags:
        - ODS
      summary: Submit an ODS scoping request
      description: >-
        Creates a new On-Demand Solutions request to begin the scoping and
        commercials process.
      operationId: createOdsRequest
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OdsRequestInput'
            example:
              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
      responses:
        '200':
          description: The newly created ODS request.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/OdsRequest'
              example:
                data:
                  id: OREQ-26-000041
                  status: scoping
                  title: Rebuild checkout flow with React 19
                  scope_id: null
                  created_at: '2026-04-15T09:05:00Z'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
components:
  schemas:
    OdsRequestInput:
      type: object
      required:
        - organization_id
        - workspace_id
        - title
        - description
        - desired_outcome
      properties:
        organization_id:
          type: string
          example: ORG-26-090500
        workspace_id:
          type: string
          example: WS-26-000021
        subscription_id:
          type: string
          example: SUB-26-001122
        project_tags:
          type: array
          items:
            type: string
          example:
            - PROJ-26-004281
        title:
          type: string
          example: Rebuild checkout flow with React 19
        description:
          type: string
          example: >-
            Migrate the existing checkout service to a React 19 Server
            Components architecture.
        desired_outcome:
          type: string
          example: 50% reduction in checkout load time and improved Core Web Vitals.
        acceptance_criteria:
          type: array
          items:
            type: string
          example:
            - All existing tests pass
            - LCP < 1.5s on 4G
            - Zero regressions in order completion rate
        timeline_weeks:
          type: integer
          example: 8
        budget_max:
          type: number
          example: 24000
        currency:
          type: string
          example: USD
    OdsRequest:
      type: object
      properties:
        id:
          type: string
          pattern: ^OREQ-
          example: OREQ-26-000041
        status:
          type: string
          enum:
            - scoping
            - scoped
            - requires_negotiation
            - cancelled
          example: scoping
        title:
          type: string
          example: Rebuild checkout flow with React 19
        scope_id:
          type: string
          nullable: true
          example: null
        created_at:
          type: string
          format: date-time
          example: '2026-04-15T09:05:00Z'
    Error:
      type: object
      required:
        - code
        - message
        - status
      properties:
        code:
          type: string
          example: not_found
        message:
          type: string
          example: The requested resource was not found.
        status:
          type: integer
          example: 404
  responses:
    BadRequest:
      description: The request was malformed or contained invalid parameters.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            code: invalid_request
            message: workspace_id is required.
            status: 400
    Unauthorized:
      description: Missing or invalid authentication token.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            code: unauthorized
            message: Bearer token is missing or expired.
            status: 401
    Forbidden:
      description: >-
        The authenticated principal does not have permission to perform this
        action.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            code: forbidden
            message: You do not have access to this resource.
            status: 403
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````