Sarj AI Developer API Organization Sip API

The organization-sip API from Sarj AI Developer API — 7 operation(s) for organization-sip.

Operations 8

POST /v1/sip/organizations/outbound/assign Assign Outbound Trunk #
GET /v1/sip/organizations/outbound/all List All Outbound Trunks #
GET /v1/sip/organizations/outbound/default Get Default Outbound Trunks #
POST /v1/sip/organizations/outbound/default Set Default Outbound Trunk #
DELETE /v1/sip/organizations/outbound/default/{trunk_id} Delete Default Outbound Trunk #
DELETE /v1/sip/organizations/outbound/{organization_id}/{trunk_id} Unassign Outbound Trunk #
GET /v1/sip/organizations/outbound/{organization_id} Get Available Outbound Trunks #
GET /v1/sip/organizations/trunk/{trunk_id} List Organizations For Trunk #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sarj-ai-developer-api-organization-sip-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sarj-ai-developer-api-organization-sip-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sarj Ai Developer Organization Sip API
  version: 1.0.0
  description: 'Operations tagged organization-sip across 2 of this provider''s published API definitions: sarj-ai-developer-api-organization-sip-api-openapi.yml, sarj-ai-developer-api-voice-platform-openapi.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://platform-api.sarj.ai/api/v1
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: organization-sip
paths:
  /v1/sip/organizations/outbound/assign:
    post:
      tags:
      - organization-sip
      summary: Assign Outbound Trunk
      operationId: organizationSipAssignOutboundTrunk
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AssignTrunkRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TrunkWithUsage'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    servers:
    - url: https://platform-api.sarj.ai/api/v1
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/sip/organizations/outbound/all:
    get:
      tags:
      - organization-sip
      summary: List All Outbound Trunks
      operationId: organizationSipListAllOutboundTrunks
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/TrunkWithUsage'
                type: array
                title: Response Organizationsiplistalloutboundtrunks
    servers:
    - url: https://platform-api.sarj.ai/api/v1
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/sip/organizations/outbound/default:
    get:
      tags:
      - organization-sip
      summary: Get Default Outbound Trunks
      operationId: organizationSipGetDefaultOutboundTrunks
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/TrunkWithUsage'
                type: array
                title: Response Organizationsipgetdefaultoutboundtrunks
    post:
      tags:
      - organization-sip
      summary: Set Default Outbound Trunk
      operationId: organizationSipSetDefaultOutboundTrunk
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SetDefaultTrunkRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TrunkWithUsage'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    servers:
    - url: https://platform-api.sarj.ai/api/v1
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/sip/organizations/outbound/default/{trunk_id}:
    delete:
      tags:
      - organization-sip
      summary: Delete Default Outbound Trunk
      operationId: organizationSipDeleteDefaultOutboundTrunk
      parameters:
      - name: trunk_id
        in: path
        required: true
        schema:
          type: string
          title: Trunk Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    servers:
    - url: https://platform-api.sarj.ai/api/v1
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/sip/organizations/outbound/{organization_id}/{trunk_id}:
    delete:
      tags:
      - organization-sip
      summary: Unassign Outbound Trunk
      operationId: organizationSipUnassignOutboundTrunk
      parameters:
      - name: organization_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Organization Id
      - name: trunk_id
        in: path
        required: true
        schema:
          type: string
          title: Trunk Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    servers:
    - url: https://platform-api.sarj.ai/api/v1
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/sip/organizations/outbound/{organization_id}:
    get:
      tags:
      - organization-sip
      summary: Get Available Outbound Trunks
      operationId: organizationSipGetAvailableOutboundTrunks
      parameters:
      - name: organization_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Organization Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TrunkWithUsage'
                title: Response Organizationsipgetavailableoutboundtrunks
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    servers:
    - url: https://platform-api.sarj.ai/api/v1
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/sip/organizations/trunk/{trunk_id}:
    get:
      tags:
      - organization-sip
      summary: List Organizations For Trunk
      operationId: organizationSipListOrganizationsForTrunk
      parameters:
      - name: trunk_id
        in: path
        required: true
        schema:
          type: string
          title: Trunk Id
      - name: direction
        in: query
        required: true
        schema:
          $ref: '#/components/schemas/SIPTrunkDirection'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
                title: Response Organizationsiplistorganizationsfortrunk
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    servers:
    - url: https://platform-api.sarj.ai/api/v1
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  schemas:
    SetDefaultTrunkRequest:
      properties:
        sip_trunk_id:
          type: string
          title: Sip Trunk Id
      type: object
      required:
      - sip_trunk_id
      title: SetDefaultTrunkRequest
    AssignTrunkRequest:
      properties:
        organization_id:
          type: string
          format: uuid
          title: Organization Id
        sip_trunk_id:
          type: string
          title: Sip Trunk Id
      type: object
      required:
      - organization_id
      - sip_trunk_id
      title: AssignTrunkRequest
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    TrunkUsage:
      properties:
        is_global_default:
          type: boolean
          title: Is Global Default
          default: false
        assigned_organizations:
          items:
            $ref: '#/components/schemas/OrganizationSummary'
          type: array
          title: Assigned Organizations
          default: []
        is_in_use:
          type: boolean
          title: Is In Use
          readOnly: true
      type: object
      required:
      - is_in_use
      title: TrunkUsage
    TrunkWithUsage:
      properties:
        sip_trunk_id:
          type: string
          title: Sip Trunk Id
        name:
          type: string
          title: Name
        address:
          type: string
          title: Address
        numbers:
          items:
            type: string
          type: array
          title: Numbers
        auth_username:
          anyOf:
          - type: string
          - type: 'null'
          title: Auth Username
        direction:
          $ref: '#/components/schemas/SIPTrunkDirection'
        usage:
          $ref: '#/components/schemas/TrunkUsage'
        created_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Created At
        provider:
          type: string
          title: Provider
          readOnly: true
      type: object
      required:
      - sip_trunk_id
      - name
      - address
      - numbers
      - direction
      - usage
      - provider
      title: TrunkWithUsage
    SIPTrunkDirection:
      type: string
      enum:
      - inbound
      - outbound
      title: SIPTrunkDirection
    OrganizationSummary:
      properties:
        id:
          type: string
          title: Id
        name:
          anyOf:
          - type: string
          - type: 'null'
          title: Name
      type: object
      required:
      - id
      title: OrganizationSummary
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
x-refined-from:
- sarj-ai-developer-api-organization-sip-api-openapi.yml
- sarj-ai-developer-api-voice-platform-openapi.json