b.well Webhook API

The Webhook API from b.well — 1 operation(s) for webhook.

Operations 1

POST /webhook Receive a bwell webhook event

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/b-well-webhook-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

b-well-webhook-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: B Well Webhook API
  version: 1.0.0
  description: 'Operations tagged Webhook across 2 of this provider''s published API definitions: b-well-client-webhook-api-openapi.json, b-well-webhook-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.client-sandbox.icanbwell.com/v1
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Webhook
paths:
  /webhook:
    post:
      summary: Receive a bwell webhook event
      description: This endpoint accepts bwell async operation events to be handled by the client.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                resourceType:
                  type: string
                  example: Bundle
                type:
                  type: string
                  example: message
                id:
                  type: string
                  example: bundle-data-export
                entry:
                  type: array
                  items:
                    type: object
                    properties:
                      resource:
                        type: object
                        properties:
                          resourceType:
                            type: string
                          eventCoding:
                            type: object
                            properties:
                              system:
                                type: string
                              code:
                                type: string
                          source:
                            type: object
                            properties:
                              endpoint:
                                type: string
                          destination:
                            type: array
                            items:
                              type: object
                              properties:
                                endpoint:
                                  type: string
                          focus:
                            type: array
                            items:
                              type: object
                              properties:
                                reference:
                                  type: string
                          extension:
                            type: array
                            items:
                              type: object
                              properties:
                                url:
                                  type: string
                                valueUri:
                                  type: string
                          id:
                            type: string
                          identifier:
                            type: array
                            items:
                              type: object
                              properties:
                                use:
                                  type: string
                                system:
                                  type: string
                                value:
                                  type: string
                      fullUrl:
                        type: string
            examples:
              dataExportCompleted:
                summary: Data export completed example
                value:
                  resourceType: Bundle
                  type: message
                  id: bundle-data-export
                  entry:
                  - resource:
                      resourceType: MessageHeader
                      eventCoding:
                        system: http://icanbwell.com/event-types
                        code: data-export-completed
                      source:
                        endpoint: https://icanbwell.com
                      destination:
                      - endpoint: https://client.system.com/webhook
                      focus:
                      - reference: Person/789
                      extension:
                      - url: http://icanbwell.com/fhir/StructureDefinition/download-url
                        valueUri: https://app.prod.icanbwell.com/client_id#/auth?authCode=12345&redirectUri=https://app.prod.icanbwell.com/client_id#/download/12345?type=userDataExport
                  - fullUrl: https://icanbwell.com/fhir/Person/789
                    resource:
                      resourceType: Person
                      id: '789'
                      identifier:
                      - use: official
                        system: urn:client:identifier
                        value: a5ddab6d-24b0-4e52-a99d-f33263db5997
              userDeleteCompleted:
                summary: User delete completed example
                value:
                  resourceType: Bundle
                  type: message
                  id: bundle-user-delete
                  entry:
                  - resource:
                      resourceType: MessageHeader
                      eventCoding:
                        system: http://icanbwell.com/event-types
                        code: user-delete-completed
                      source:
                        endpoint: https://icanbwell.com
                      destination:
                      - endpoint: https://client.system.com/webhook
                      focus:
                      - reference: Person/789
                  - fullUrl: https://icanbwell.com/fhir/Person/789
                    resource:
                      resourceType: Person
                      id: '789'
                      identifier:
                      - use: official
                        system: urn:client:identifier
                        value: a5ddab6d-24b0-4e52-a99d-f33263db5997
      responses:
        '200':
          description: Successfully received the webhook event.
          content:
            application/json:
              example:
                resourceType: Bundle
                type: message
                id: bundle-webhook-response
                entry:
                - resource:
                    resourceType: MessageHeader
                    eventCoding:
                      system: http://icanbwell.com/event-types
                      code: webhook-payload-received
                    source:
                      endpoint: https://client.system.com
                    destination:
                    - endpoint: https://icanbwell.com
                    response:
                      identifier: bundle-user-delete
                      code: ok
        '400':
          description: Invalid request payload.
        '401':
          description: Invalid HMAC signature.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Unauthorized
        '500':
          description: Internal server error.
      tags:
      - Webhook
x-refined-from:
- b-well-client-webhook-api-openapi.json
- b-well-webhook-api-openapi.yml
x-readme:
  explorer-enabled: true
  proxy-enabled: true