> 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

# Application Created

POST 

Triggered when a boarding application is created.

Notification name: `createdapplication`

Reference: https://docs.payabli.com/developers/webhooks/payops-application-created

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOpsWebhooks.createdApplication:
    post:
      operationId: subpackage_payOpsWebhooks.createdApplication
      summary: Application Created
      description: |-
        Triggered when a boarding application is created.

        Notification name: `createdapplication`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreatedApplicationContent'
components:
  schemas:
    CreatedApplicationContent:
      type: object
      properties:
        Event:
          type: string
          enum:
            - CreatedApplication
          description: Event type identifier
        Text:
          type: string
          description: Human-readable description of the event
        LegalName:
          type: string
          description: The merchant's legal business name
        DbaName:
          type: string
          description: The merchant's DBA (doing-business-as) name
        AppID:
          type: integer
          description: Unique boarding application identifier
        createdAt:
          type: string
          description: Creation timestamp
        SoftwarePartner:
          type: string
          description: The software partner associated with the application
        PolicyId:
          type:
            - string
            - 'null'
          description: Underwriting policy identifier, when applicable
        ApplicationToken:
          type:
            - string
            - 'null'
          description: Boarding application token, when applicable
        ExternalPaypointId:
          type: string
          description: External paypoint system identifier
      required:
        - Event
        - Text
        - LegalName
        - DbaName
        - AppID
        - createdAt
        - SoftwarePartner
        - PolicyId
        - ApplicationToken
        - ExternalPaypointId
      title: CreatedApplicationContent

```