Certifyos V2/groups API

The v2/groups API from Certifyos — 1 operation(s) for v2/groups.

Operations 2

POST /v2/groups/{id}/associate-facilities Associate Facilities with a Group #
DELETE /v2/groups/{id}/associate-facilities Dissociate Facilities From a Group #

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/certifyos-v2-groups-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

certifyos-v2-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: CertifyOS V2/groups API
  description: ''
  contact: {}
servers:
- url: https://ng-api-production.certifyos.com
  description: Production
- url: https://ng-api-stg.certifyos.com/
  description: Staging (Test Data)
tags:
- name: v2/groups
paths:
  /v2/groups/{id}/associate-facilities:
    post:
      operationId: OrgEntitiesV2Controller_associateFacilityAsLocation
      summary: Associate Facilities with a Group
      parameters:
      - name: organization-id
        in: header
        schema:
          type: string
      - name: id
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AssociateFacilitiesV2Dto'
      responses:
        '201':
          description: If all ids are associated successfully.
        '207':
          description: If some of the IDs failed to be associated.
        '401':
          description: Unauthorized if authorization token is not provided or invalid.
        '403':
          description: Forbidden if user access is not right.
        '404':
          description: If org-entity with the id is not found.
      tags:
      - v2/groups
      security:
      - BearerAuth: []
    delete:
      operationId: OrgEntitiesV2Controller_disassociateFacilityFromLocation
      summary: Dissociate Facilities From a Group
      parameters:
      - name: organization-id
        in: header
        schema:
          type: string
      - name: id
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AssociateFacilitiesV2Dto'
      responses:
        '200':
          description: If all ids are disassociated successfully.
        '207':
          description: If some of the IDs failed to be disassociated.
        '401':
          description: Unauthorized if authorization token is not provided or invalid.
        '403':
          description: Forbidden if user access is not right.
        '404':
          description: If org-entity with the id is not found.
      tags:
      - v2/groups
      security:
      - BearerAuth: []
components:
  schemas:
    AssociateFacilitiesV2Dto:
      type: object
      properties:
        list:
          type: array
          items:
            $ref: '#/components/schemas/AssociateFacilityV2Dto'
      required:
      - list
    AssociateFacilityV2Dto:
      type: object
      properties:
        facilityId:
          type: string
      required:
      - facilityId
  securitySchemes:
    BearerAuth:
      scheme: bearer
      bearerFormat: JWT
      type: http