> 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

# Payment Originated

POST 

Triggered when an ACH payment is originated and batched.

Notification name: `originatedpayment`

Reference: https://docs.payabli.com/developers/webhooks/payin-payment-originated

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payInWebhooks.originatedPayment:
    post:
      operationId: subpackage_payInWebhooks.originatedPayment
      summary: Payment Originated
      description: |-
        Triggered when an ACH payment is originated and batched.

        Notification name: `originatedpayment`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OriginatedPaymentContent'
components:
  schemas:
    OriginatedPaymentContent:
      type: object
      properties:
        Event:
          type: string
          enum:
            - OriginatedPayment
          description: Event type identifier
        Paypoint:
          type: string
          description: The name of the merchant/paypoint
        Text:
          type: string
          description: Human-readable description of the event
        transId:
          type: string
          description: Unique transaction identifier
        CustomerId:
          type: string
          description: The unique identifier for the customer
        CustomerNumber:
          type: string
          description: Internal customer identifier
        Method:
          type: string
          description: Payment processing method
        WalletType:
          type:
            - string
            - 'null'
          description: Digital wallet type, when applicable
        EntryPoint:
          type: string
          description: System entry point identifier
        ExternalPaypointId:
          type: string
          description: External paypoint system identifier
        AccountType:
          type: string
          description: Masked account or card number for the payment method
        BatchNumber:
          type: string
          description: Batch number identifier
        NetAmount:
          type: string
          description: Net amount in currency format
        ExpectedDepositDate:
          type: string
          description: Expected deposit date
      required:
        - Event
        - Paypoint
        - Text
        - transId
        - CustomerId
        - CustomerNumber
        - Method
        - WalletType
        - EntryPoint
        - ExternalPaypointId
        - AccountType
        - BatchNumber
        - NetAmount
        - ExpectedDepositDate
      title: OriginatedPaymentContent

```