Pynt Organization API

The organization API from Pynt — 4 operation(s) for organization.

Operations 5

POST /v1/organization Create Organization #
GET /v1/organization/sso Get Sso #
GET /v1/organization/{organization_id} Find Organization By Id #
PATCH /v1/organization/{organization_id} Update Organization #
PATCH /v1/organization/{organization_id}/config Update Organization Config #

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/pynt-organization-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

pynt-organization-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Pynt Organization API
  version: 0.1.0
  description: 'Operations tagged organization across 2 of this provider''s published API definitions: pynt-openapi.json, pynt-openapi.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.pynt.io
  description: Pynt production API
tags:
- name: organization
paths:
  /v1/organization:
    post:
      tags:
      - organization
      summary: Create Organization
      description: Create a new organization. SystemAdmin only. No tenant_id required.
      operationId: create_organization_v1_organization_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrganizationCreateRequest'
        required: true
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationCreateResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - Bearer Token: []
  /v1/organization/sso:
    get:
      tags:
      - organization
      summary: Get Sso
      operationId: get_sso_v1_organization_sso_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SSOResponse'
      security:
      - Bearer Token: []
      - Operator Organization Context: []
  /v1/organization/{organization_id}:
    get:
      tags:
      - organization
      summary: Find Organization By Id
      operationId: find_organization_by_id_v1_organization__organization_id__get
      security:
      - API Key: []
      - Bearer Token: []
      - System API Key: []
      - Organization ID: []
      - Operator Organization Context: []
      parameters:
      - name: organization_id
        in: path
        required: true
        schema:
          type: string
          pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
          title: Organization Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    patch:
      tags:
      - organization
      summary: Update Organization
      operationId: update_organization_v1_organization__organization_id__patch
      security:
      - API Key: []
      - Bearer Token: []
      - System API Key: []
      - Organization ID: []
      - Operator Organization Context: []
      parameters:
      - name: organization_id
        in: path
        required: true
        schema:
          type: string
          title: Organization Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrganizationUpdateModel'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/organization/{organization_id}/config:
    patch:
      tags:
      - organization
      summary: Update Organization Config
      operationId: update_organization_config_v1_organization__organization_id__config_patch
      security:
      - Bearer Token: []
      - Operator Organization Context: []
      - API Key: []
      - Bearer Token: []
      - System API Key: []
      - Organization ID: []
      parameters:
      - name: organization_id
        in: path
        required: true
        schema:
          type: string
          title: Organization Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrganizationConfigUpdateModel'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationConfigResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    OrganizationUpdateModel:
      properties:
        name:
          type: string
          maxLength: 30
          pattern: ^[a-zA-Z0-9_\-\s]*$
          title: Name
      type: object
      required:
      - name
      title: OrganizationUpdateModel
    OrganizationConfigResponse:
      properties:
        allow_collect_data:
          type: boolean
          title: Allow Collect Data
        allow_collect_data_since:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Allow Collect Data Since
        local_only_mode:
          type: boolean
          title: Local Only Mode
      type: object
      required:
      - allow_collect_data
      - allow_collect_data_since
      - local_only_mode
      title: OrganizationConfigResponse
    OrganizationResponse:
      properties:
        organization_id:
          type: string
          title: Organization Id
        name:
          type: string
          title: Name
        license_expiration:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: License Expiration
        config:
          $ref: '#/components/schemas/OrganizationConfigResponse'
      type: object
      required:
      - organization_id
      - name
      - config
      title: OrganizationResponse
    OrganizationCreateResponse:
      properties:
        organization_id:
          type: string
          title: Organization Id
      type: object
      required:
      - organization_id
      title: OrganizationCreateResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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
    OrganizationCreateRequest:
      properties:
        name:
          type: string
          title: Name
      type: object
      required:
      - name
      title: OrganizationCreateRequest
    SSOResponse:
      properties:
        identity_provider:
          type: string
          title: Identity Provider
      type: object
      required:
      - identity_provider
      title: SSOResponse
    OrganizationConfigUpdateModel:
      properties:
        allow_collect_data:
          anyOf:
          - type: boolean
          - type: 'null'
          title: Allow Collect Data
        local_only_mode:
          anyOf:
          - type: boolean
          - type: 'null'
          title: Local Only Mode
      type: object
      title: OrganizationConfigUpdateModel
  securitySchemes:
    API_Key:
      type: apiKey
      in: header
      name: X-API-Key
    Bearer_Token:
      type: apiKey
      in: header
      name: Authorization
    System_API_Key:
      type: apiKey
      in: header
      name: X-System-API-Key
    Organization_ID:
      type: apiKey
      in: header
      name: X-Organization-ID
    Operator_Organization_Context:
      type: apiKey
      in: header
      name: context
x-refined-from:
- pynt-openapi.json
- pynt-openapi.json