Validere company_equipment_type_groups API

Company Equipment Type Groups

Operations 4

GET /app/v1/company_equipment_type_groups List company equipment type groups #
POST /app/v1/company_equipment_type_groups Create an association between a company and equipment type group #
DELETE /app/v1/company_equipment_type_groups/{group_name} Delete a company equipment type group #
GET /app/v1/company_equipment_type_groups/{group_name} Get company equipment type 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/validere-company-equipment-type-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 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

validere-company-equipment-type-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Activity Log
  title: CarbonHub activities Company Equipment Type Groups API
  version: 1.0.0
servers:
- url: https://api.validere.io
security:
- Staging: []
- Integration: []
- Local: []
tags:
- description: Company <> Equipment Type Groups
  name: company_equipment_type_groups
paths:
  /app/v1/company_equipment_type_groups:
    get:
      operationId: list_company_equipment_type_groups
      parameters:
      - $ref: '#/components/parameters/EquipmentTypeGroupNameQuery'
      - $ref: '#/components/parameters/SortBy'
      - $ref: '#/components/parameters/SortDirection'
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/CompanyEquipmentTypeGroup'
                type: array
          description: A successful operation
      summary: List company equipment type groups
      tags:
      - company_equipment_type_groups
    post:
      operationId: create_company_equipment_type_group
      requestBody:
        content:
          application/json:
            schema:
              properties:
                group_name:
                  example: subpartW
                  type: string
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompanyEquipmentTypeGroup'
          description: A successful operation
      summary: Create an association between a company and equipment type group
      tags:
      - company_equipment_type_groups
  /app/v1/company_equipment_type_groups/{group_name}:
    delete:
      operationId: delete_company_equipment_type_group
      parameters:
      - $ref: '#/components/parameters/EquipmentTypeGroupName'
      responses:
        '200':
          description: successful operation
      summary: Delete a company equipment type group
      tags:
      - company_equipment_type_groups
    get:
      operationId: get_company_equipment_type_group
      parameters:
      - $ref: '#/components/parameters/EquipmentTypeGroupName'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompanyEquipmentTypeGroup'
          description: A successful operation
      summary: Get company equipment type group
      tags:
      - company_equipment_type_groups
components:
  parameters:
    EquipmentTypeGroupNameQuery:
      description: equipment type group name
      in: query
      name: group_name
      required: false
      schema:
        type: string
    EquipmentTypeGroupName:
      description: Name of an equipment type group
      in: path
      name: group_name
      required: true
      schema:
        example: subpartW
        type: string
    SortDirection:
      description: sort direction
      example: desc
      in: query
      name: sort_direction
      required: false
      schema:
        enum:
        - asc
        - desc
        type: string
    SortBy:
      description: sort by
      in: query
      name: sort_by
      required: false
      schema:
        type: string
  schemas:
    CompanyEquipmentTypeGroup:
      properties:
        company_id:
          format: uuid
          type: string
        group_name:
          example: subpartW
          type: string