> This is Payabli documentation. For a complete page index, fetch https://docs.payabli.com/llms.txt — append .md to any page URL for lightweight markdown. For section-level indexes, query parameters, and other AI-optimized access methods, see https://docs.payabli.com/ai-agents.md

# Bill Canceled

POST 

Triggered when a bill or its payment is canceled.

Notification name: `billcanceled`

Reference: https://docs.payabli.com/developers/webhooks/payout-bill-canceled

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOutWebhooks.billCanceled:
    post:
      operationId: subpackage_payOutWebhooks.billCanceled
      summary: Bill Canceled
      description: |-
        Triggered when a bill or its payment is canceled.

        Notification name: `billcanceled`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BillCanceledContent'
components:
  schemas:
    BillCanceledContent:
      type: object
      properties:
        Event:
          type: string
          enum:
            - BillCanceled
          description: Event type identifier
        Paypoint:
          type: string
          description: The name of the merchant/paypoint
        Text:
          type: string
          description: Human-readable description of the event
        InvoiceId:
          type: integer
          description: Unique bill/invoice identifier
        InvoiceNumber:
          type: string
          description: Bill/invoice number
        TotalAmount:
          type: string
          description: Total transaction amount including fees
        CustomerId:
          type: integer
          description: The unique identifier for the customer
        CustomerName:
          type: string
          description: The customer or vendor name
        CustomerNumber:
          type: string
          description: Internal customer identifier
        ExternalPaypointId:
          type: string
          description: External paypoint system identifier
        entryPoint:
          type: string
          description: System entry point identifier
      required:
        - Event
        - Paypoint
        - Text
        - InvoiceId
        - InvoiceNumber
        - TotalAmount
        - CustomerId
        - CustomerName
        - CustomerNumber
        - ExternalPaypointId
        - entryPoint
      title: BillCanceledContent

```