Hint Health GlobalWebhookEndpoint API

The GlobalWebhookEndpoint API from Hint Health — 2 operation(s) for globalwebhookendpoint.

Operations 5

POST /global_webhook_endpoints Create Webhook Endpoint #
GET /global_webhook_endpoints List All Webhook Endpoints #
DELETE /global_webhook_endpoints/{id} Delete Webhook Endpoint #
GET /global_webhook_endpoints/{id} Show Webhook Endpoint #
PATCH /global_webhook_endpoints/{id} Update Webhook Endpoint #

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/hint-health-globalwebhookendpoint-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

hint-health-globalwebhookendpoint-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Hint Health Global Webhook Endpoint API
  description: REST API providing programmatic access to Hint Health's direct primary care platform, covering patient and membership management, billing, charges, invoices, clinical data, practice configuration, partner integrations, and webhook event delivery.
  version: '1.0'
  contact:
    name: Hint Health Developer Support
    email: devsupport@hint.com
    url: https://developers.hint.com
  license:
    name: Private
  termsOfService: https://www.hint.com/terms
servers:
- url: https://api.hint.com/api
  description: Production
- url: https://api.sandbox.hint.com/api
  description: Sandbox
security:
- BearerAuth: []
tags:
- name: GlobalWebhookEndpoint
paths:
  /global_webhook_endpoints:
    post:
      tags:
      - GlobalWebhookEndpoint
      operationId: GlobalWebhookEndpoint.CreateWebhookEndpointLegacy
      summary: Create Webhook Endpoint
      description: ''
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Platform.WebhookEndpointBlueprint_one'
              example:
                id: whep-ab12C345DeF6
                created_at: '2017-02-05T06:23:00.000000-08:00'
                last_delivered_at: null
                localhost_webhook_url: http://localhost:3000/hint/webhook
                updated_at: '2017-02-05T06:23:00.000000-08:00'
                webhook_url: https://api.partner/webhook_endpoint_url
                partner_backend:
                  id: pbnd-ab12C345DeF6
                  name: Default
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Platform.WebhookEndpointsController.create_body'
    get:
      tags:
      - GlobalWebhookEndpoint
      operationId: GlobalWebhookEndpoint.WebhookEndpointsLegacy
      summary: List All Webhook Endpoints
      description: ''
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Platform.WebhookEndpointBlueprint_all'
              example:
              - id: whep-ab12C345DeF6
                created_at: '2017-02-05T06:23:00.000000-08:00'
                last_delivered_at: null
                localhost_webhook_url: http://localhost:3000/hint/webhook
                updated_at: '2017-02-05T06:23:00.000000-08:00'
                webhook_url: https://api.partner/webhook_endpoint_url
                partner_backend:
                  id: pbnd-ab12C345DeF6
                  name: Default
              - id: whep-ab12C345DeF6
                created_at: '2017-02-05T06:23:00.000000-08:00'
                last_delivered_at: null
                localhost_webhook_url: http://localhost:3000/hint/webhook
                updated_at: '2017-02-05T06:23:00.000000-08:00'
                webhook_url: https://api.partner/webhook_endpoint_url
                partner_backend:
                  id: pbnd-ab12C345DeF6
                  name: Default
              - id: whep-ab12C345DeF6
                created_at: '2017-02-05T06:23:00.000000-08:00'
                last_delivered_at: null
                localhost_webhook_url: http://localhost:3000/hint/webhook
                updated_at: '2017-02-05T06:23:00.000000-08:00'
                webhook_url: https://api.partner/webhook_endpoint_url
                partner_backend:
                  id: pbnd-ab12C345DeF6
                  name: Default
  /global_webhook_endpoints/{id}:
    delete:
      tags:
      - GlobalWebhookEndpoint
      operationId: GlobalWebhookEndpoint.DeleteWebhookEndpointLegacy
      summary: Delete Webhook Endpoint
      description: This operation will take effect immediately and cancel all pending and retrying webhooks.
      parameters:
      - name: id
        in: path
        required: true
        description: Unique Global Webhook Endpoint ID
        schema:
          type: string
      responses:
        '204':
          description: No content
    get:
      tags:
      - GlobalWebhookEndpoint
      operationId: GlobalWebhookEndpoint.ShowWebhookEndpointLegacy
      summary: Show Webhook Endpoint
      description: ''
      parameters:
      - name: id
        in: path
        required: true
        description: Unique Global Webhook Endpoint ID
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Platform.WebhookEndpointBlueprint_one'
              example:
                id: whep-ab12C345DeF6
                created_at: '2017-02-05T06:23:00.000000-08:00'
                last_delivered_at: null
                localhost_webhook_url: http://localhost:3000/hint/webhook
                updated_at: '2017-02-05T06:23:00.000000-08:00'
                webhook_url: https://api.partner/webhook_endpoint_url
                partner_backend:
                  id: pbnd-ab12C345DeF6
                  name: Default
    patch:
      tags:
      - GlobalWebhookEndpoint
      operationId: GlobalWebhookEndpoint.UpdateWebhookEndpointLegacy
      summary: Update Webhook Endpoint
      description: ''
      parameters:
      - name: id
        in: path
        required: true
        description: Unique Global Webhook Endpoint ID
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Platform.WebhookEndpointBlueprint_one'
              example:
                id: whep-ab12C345DeF6
                created_at: '2017-02-05T06:23:00.000000-08:00'
                last_delivered_at: null
                localhost_webhook_url: http://localhost:3000/hint/webhook
                updated_at: '2017-02-05T06:23:00.000000-08:00'
                webhook_url: https://api.partner/webhook_endpoint_url
                partner_backend:
                  id: pbnd-ab12C345DeF6
                  name: Default
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Platform.WebhookEndpointsController.update_body'
components:
  schemas:
    Platform.WebhookEndpointsController.update_body:
      title: Update_WebhookEndpoint_Legacy
      type: object
      properties:
        webhook_url:
          type: string
    Platform.WebhookEndpointsController.create_body:
      type: object
      properties:
        webhook_url:
          type: string
      required:
      - webhook_url
    Platform.WebhookEndpointBlueprint_one:
      type: object
      properties:
        id:
          type: string
        created_at:
          type: string
        last_delivered_at:
          type: string
        updated_at:
          type: string
        webhook_url:
          type: string
    Platform.WebhookEndpointBlueprint_all:
      type: array
      items:
        type: object
        properties:
          id:
            type: string
          created_at:
            type: string
          last_delivered_at:
            type: string
          updated_at:
            type: string
          webhook_url:
            type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Practice access token or Partner API key (Bearer authentication)