Umbra Organizations API

The Organizations API from Umbra — 2 operation(s) for organizations.

Operations 2

GET /organizations/settings Get Organization Settings #
GET /organizations/constraints List All Product Constraints For Logged In Org #

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/umbra-organizations-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

umbra-organizations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Admin Organizations API
  description: Canopy Admin API for M2M Token Management
  version: 3.1.0
servers:
- url: https://api.canopy.umbra.space/admin
security:
- bearerAuth: []
tags:
- name: Organizations
paths:
  /organizations/settings:
    get:
      tags:
      - Organizations
      summary: Get Organization Settings
      description: Returns Organization Settings for the logged in Organization
      operationId: get_organization_settings
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationSettings'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /organizations/constraints:
    get:
      tags:
      - Organizations
      summary: List All Product Constraints For Logged In Org
      description: Retrieves all product constraints that apply for the logged in organization
      operationId: list_all_product_constraints_for_logged_in_org
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetConstraintsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SICDFocusType:
      type: string
      enum:
      - ONLY_UNFOCUSED
      - PREFER_FOCUSED
      - UNFOCUSED_AND_FOCUSED
      title: SICDFocusType
      description: SICD Focusing Type
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    OrgStatus:
      type: string
      enum:
      - ACTIVE
      - ARCHIVED
      title: OrgStatus
      description: OrgStatus
    ScanProductConstraints:
      properties:
        allowedProductTypes:
          items:
            $ref: '#/components/schemas/TaskProductType'
          type: array
          title: Allowedproducttypes
        constraints:
          items:
            $ref: '#/components/schemas/ScanProductConstraintsFields'
          type: array
          title: Constraints
      additionalProperties: false
      type: object
      required:
      - allowedProductTypes
      - constraints
      title: ScanProductConstraints
      description: Product constraints for SCAN imaging mode.
    ScanProductConstraintsFields:
      properties:
        id:
          type: string
          format: uuid4
          title: Id
        productConstraintType:
          type: string
          title: Productconstrainttype
        rangeResolutionMinMeters:
          type: number
          title: Rangeresolutionminmeters
        rangeMinMeters:
          type: integer
          title: Rangeminmeters
        rangeMaxMeters:
          type: integer
          title: Rangemaxmeters
        rangeDefaultMeters:
          type: integer
          title: Rangedefaultmeters
        azimuthMinKm:
          type: integer
          title: Azimuthminkm
        azimuthMaxKm:
          type: integer
          title: Azimuthmaxkm
        grazingAngleMinDegrees:
          type: integer
          title: Grazinganglemindegrees
        grazingAngleMaxDegrees:
          type: integer
          title: Grazinganglemaxdegrees
      additionalProperties: false
      type: object
      required:
      - id
      - productConstraintType
      - rangeResolutionMinMeters
      - rangeMinMeters
      - rangeMaxMeters
      - rangeDefaultMeters
      - azimuthMinKm
      - azimuthMaxKm
      - grazingAngleMinDegrees
      - grazingAngleMaxDegrees
      title: ScanProductConstraintsFields
      description: Fields for Scan product constraints.
    SpotlightProductConstraints:
      properties:
        allowedProductTypes:
          items:
            $ref: '#/components/schemas/TaskProductType'
          type: array
          title: Allowedproducttypes
        constraints:
          items:
            $ref: '#/components/schemas/SpotlightProductConstraintsFields'
          type: array
          title: Constraints
      additionalProperties: false
      type: object
      required:
      - allowedProductTypes
      - constraints
      title: SpotlightProductConstraints
      description: Product constraints for Spotlight imaging mode.
    TaskProductType:
      type: string
      enum:
      - CPHD
      - GEC
      - SIDD
      - SICD
      - CSI_TIFF
      - CSI_SIDD
      - DI_GIF
      - DI_TIF
      - CRSD
      title: TaskProductType
      description: See https://docs.canopy.umbra.space/docs/delivered-product-types for details.
    LicenseType:
      type: string
      enum:
      - USGPLUS
      - CCBY4
      title: LicenseType
      description: LicenseType
    OrganizationSettings:
      properties:
        organizationId:
          type: string
          title: Organizationid
          description: The organization's ID.
        allowedProductTypes:
          items:
            $ref: '#/components/schemas/TaskProductType'
          type: array
          title: Allowedproducttypes
          description: List of TaskProductTypes that this organization is allowed to Task.
          default:
          - GEC
          - SIDD
          - SICD
          - CPHD
          - CSI_SIDD
          - CSI_TIFF
          - DI_GIF
        defaultProductTypes:
          items:
            $ref: '#/components/schemas/TaskProductType'
          type: array
          title: Defaultproducttypes
          description: Default list of TaskProductTypes to be delivered for this organization.
          default:
          - GEC
          - SIDD
          - SICD
        allowedSatelliteIds:
          items:
            type: string
          type: array
          title: Allowedsatelliteids
          description: List of satellite IDs that this organization is allowed to Task.
          default:
          - Umbra-09
          - Umbra-10
        includeInArchive:
          type: boolean
          title: Includeinarchive
          description: Should collects in this org be included in the Umbra Archive Catalog? If False, collects in this org will not be included unless overridden or ingested manually.
          default: false
        slaLatencySeconds:
          anyOf:
          - type: integer
          - type: 'null'
          title: Slalatencyseconds
          description: The SLA latency in seconds for this organization. Default is None.
        license:
          $ref: '#/components/schemas/LicenseType'
          description: License to use in SIDD and SICD metadata.
          default: CCBY4
        sicdFocusType:
          $ref: '#/components/schemas/SICDFocusType'
          description: Preferred SICD focusing when requesting SICD assets
          default: PREFER_FOCUSED
        status:
          $ref: '#/components/schemas/OrgStatus'
          description: The status of the organization. Default is active.
          default: ACTIVE
      type: object
      required:
      - organizationId
      title: OrganizationSettings
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SpotlightProductConstraintsFields:
      properties:
        id:
          type: string
          format: uuid4
          title: Id
        productConstraintType:
          type: string
          title: Productconstrainttype
        sceneSize:
          type: string
          title: Scenesize
        rangeResolutionMinMeters:
          type: number
          title: Rangeresolutionminmeters
        multilookFactor:
          type: integer
          title: Multilookfactor
        grazingAngleMinDegrees:
          type: integer
          title: Grazinganglemindegrees
        grazingAngleMaxDegrees:
          type: integer
          title: Grazinganglemaxdegrees
      type: object
      required:
      - id
      - productConstraintType
      - sceneSize
      - rangeResolutionMinMeters
      - multilookFactor
      - grazingAngleMinDegrees
      - grazingAngleMaxDegrees
      title: SpotlightProductConstraintsFields
      description: Fields for Spotlight product constraints.
    GetConstraintsResponse:
      properties:
        SPOTLIGHT:
          $ref: '#/components/schemas/SpotlightProductConstraints'
        SCAN:
          $ref: '#/components/schemas/ScanProductConstraints'
      additionalProperties: false
      type: object
      required:
      - SPOTLIGHT
      - SCAN
      title: GetConstraintsResponse
      description: Response model for the GET /constraints endpoints.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT