MyCarrier Webhook Type API

The WebhookType API from MyCarrier — 2 operation(s) for webhooktype.

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/mycarrier-webhooktype-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

mycarrier-webhooktype-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ITM.Services.Webhook.Api Webhook Type API
  version: v1
tags:
- name: WebhookType
paths:
  /WebhookType/{name}:
    get:
      tags:
      - WebhookType
      summary: Returns a list of registered WebhookTypes
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns a page of WebhookTypes
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/WebhookType'
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookType'
            text/json:
              schema:
                $ref: '#/components/schemas/WebhookType'
      security:
      - Bearer: []
    delete:
      tags:
      - WebhookType
      summary: Attempts to delete the WebhookType specificed by name
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The WebhookType was deleted
      security:
      - Bearer: []
    put:
      tags:
      - WebhookType
      summary: Attempts to update the User for the provided id
      parameters:
      - name: name
        in: path
        description: ''
        required: true
        schema:
          type: string
      requestBody:
        description: ''
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/WebhookType'
          application/json:
            schema:
              $ref: '#/components/schemas/WebhookType'
          text/json:
            schema:
              $ref: '#/components/schemas/WebhookType'
          application/*+json:
            schema:
              $ref: '#/components/schemas/WebhookType'
      responses:
        '200':
          description: The User was updated
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/WebhookType'
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookType'
            text/json:
              schema:
                $ref: '#/components/schemas/WebhookType'
        '400':
          description: Bad request due to data validation
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '404':
          description: No User was able to be found for the provided id
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
      security:
      - Bearer: []
  /WebhookType:
    get:
      tags:
      - WebhookType
      summary: Returns a list of registered WebhookTypes
      responses:
        '200':
          description: Returns a page of WebhookTypes
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WebhookType'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WebhookType'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WebhookType'
      security:
      - Bearer: []
    post:
      tags:
      - WebhookType
      summary: Attempts to create a new WebhookType
      requestBody:
        description: ''
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/WebhookType'
          application/json:
            schema:
              $ref: '#/components/schemas/WebhookType'
          text/json:
            schema:
              $ref: '#/components/schemas/WebhookType'
          application/*+json:
            schema:
              $ref: '#/components/schemas/WebhookType'
      responses:
        '201':
          description: The WebhookType was created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/WebhookType'
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookType'
            text/json:
              schema:
                $ref: '#/components/schemas/WebhookType'
        '400':
          description: Bad request due to data validation
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
      security:
      - Bearer: []
components:
  schemas:
    ProblemDetails:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        status:
          type:
          - integer
          - 'null'
          format: int32
        detail:
          type:
          - string
          - 'null'
        instance:
          type:
          - string
          - 'null'
      additionalProperties: {}
    WebhookType:
      type: object
      properties:
        name:
          type:
          - string
          - 'null'
        description:
          type:
          - string
          - 'null'
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: http
      description: Enter JWT Bearer token **_only_**
      scheme: bearer
      bearerFormat: JWT