> ## Documentation Index
> Fetch the complete documentation index at: https://docs.versori.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Post billing webhooks

> BillingWebhooks is the endpoint for receiving webhooks from the billing platform. This endpoint is used to
update the billing information for an Organisation. Right now, only Stripe webhooks are supported.




## OpenAPI

````yaml /openapi/organisations-api-v1.yaml post /billing-webhooks
openapi: 3.1.0
info:
  title: Organisations API
  description: >-
    The Organisations API provides users the ability to manage their
    organisations.
  version: v1
servers:
  - url: https://platform.versori.com/api/organisations/v1
    description: Production server
  - url: http://localhost:8081/v1
    description: Localhost
security: []
tags:
  - name: organisations
    description: >
      Organisations is the root-level entity for the Versori platform. All
      resources are scoped under an Organisation,

      each Organisation has an owner and can have multiple members.
  - name: signing-keys
    description: >
      Signing keys are used to sign JWTs which can be used to authenticate
      requests to the Versori platform.
paths:
  /billing-webhooks:
    post:
      tags:
        - webhooks
        - public
      description: >
        BillingWebhooks is the endpoint for receiving webhooks from the billing
        platform. This endpoint is used to

        update the billing information for an Organisation. Right now, only
        Stripe webhooks are supported.
      operationId: BillingWebhooks
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string

````