> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://amer.developers.trustly.com/llms.txt.
> For full documentation content, see https://amer.developers.trustly.com/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://amer.developers.trustly.com/_mcp/server.

# Data Ready

POST 

The `DataReady` event indicates that all bank-qualified data, such as account details and balance, has been retrieved and is ready for consumption. Wait for this event before calling Account Data endpoints.

Reference: https://amer.developers.trustly.com/api-reference/api/event-notifications/data-ready

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: Trustly API
  version: 1.0.0
paths: {}
webhooks:
  data-ready:
    post:
      operationId: data-ready
      summary: Data Ready
      description: >-
        The `DataReady` event indicates that all bank-qualified data, such as
        account details and balance, has been retrieved and is ready for
        consumption. Wait for this event before calling Account Data endpoints.
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventDataReady'
components:
  schemas:
    EventDataReady:
      type: object
      properties:
        createdAt:
          type: string
          format: int64
          description: >-
            The timestamp when the event was created, represented as a Unix
            timestamp in milliseconds.
        eventId:
          type: string
          description: Unique identifier for the event.
        eventType:
          type: string
          description: The type of event that triggered the webhook.
        merchantId:
          type: string
          description: The unique identifier of the merchant.
        message:
          type: string
          description: A message describing the event.
        objectId:
          type: string
          description: >-
            Unique identifier for the object associated with the event, such as
            a transaction.
        objectType:
          type: string
          description: The type of object associated with the event (e.g., Transaction).
        paymentType:
          type: string
          description: Type of payment, denoted by a numeric code.
        status:
          type: string
          description: Status code representing the current state of the transaction.
        statusMessage:
          type: string
          description: A message describing the current status of the transaction.
        timeZone:
          type: string
          description: >-
            The timezone of the event, formatted in IANA timezone database
            format.
        transactionType:
          type: string
          description: Type of transaction, denoted by a numeric code.
      description: >-
        The 'DataReady' event indicates that the required transaction data is
        available and ready for processing.
      title: EventDataReady

```