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

# Account Transfer Reversed

> Fired when a previously completed transfer is reversed. Slim payload — omits account_id, account_type, currency, amount, and memo.



## AsyncAPI

````yaml specs/asyncapi-banking.yaml AccountTransferReversed
id: AccountTransferReversed
title: Account Transfer Reversed
description: >-
  Fired when a previously completed transfer is reversed. Slim payload — omits
  account_id, account_type, currency, amount, and memo.
servers:
  - id: webhook
    protocol: https
    host: your-webhook-endpoint.example.com
    bindings: []
    variables: []
address: account.transfer.reversed
parameters: []
bindings: []
operations:
  - &ref_1
    id: receiveAccountTransferReversed
    title: Receive account transfer reversed
    description: Account Transfer Reversed
    type: receive
    messages:
      - &ref_2
        id: AccountTransferReversedMessage
        contentType: application/json
        payload:
          - name: Account Transfer Reversed
            type: object
            properties:
              - name: event
                type: string
                required: true
              - name: data
                type: object
                required: true
                properties:
                  - name: event_id
                    type: string
                    description: >-
                      Unique identifier for this webhook event delivery. Use as
                      your deduplication key.
                    required: true
                  - name: event_type
                    type: string
                    description: The event type name, matching the top-level event field.
                    required: true
                  - name: event_description
                    type: string
                    description: Human-readable description of the event. Often empty.
                    required: true
                  - name: entity_id
                    type: string
                    description: Platform-assigned numeric entity identifier.
                    required: true
                  - name: entity_type
                    type: string
                    description: The type of entity associated with this event.
                    enumValues:
                      - user
                      - business
                    required: true
                  - name: transfer_id
                    type: string
                    description: Platform-assigned transfer identifier.
                    required: true
                  - name: direction
                    type: string
                    description: Direction of fund movement from the entity's perspective.
                    enumValues:
                      - credit
                      - debit
                    required: true
                  - name: status
                    type: string
                    description: Transfer status.
                    required: true
              - name: created_at
                type: string
                description: Date and time in DD-MM-YYYY hh:mm AM/PM format.
                required: true
              - name: updated_at
                type: string
                description: Date and time in DD-MM-YYYY hh:mm AM/PM format.
                required: true
        headers: []
        jsonPayloadSchema:
          type: object
          required:
            - event
            - data
            - created_at
            - updated_at
          properties:
            event:
              type: string
              example: account.transfer.reversed
              x-parser-schema-id: <anonymous-schema-144>
            data:
              allOf:
                - type: object
                  required:
                    - event_id
                    - event_type
                    - event_description
                  description: >-
                    Base fields present in the data block of every Banking
                    Platform webhook event.
                  properties:
                    event_id:
                      type: string
                      pattern: ^inn_whe_[A-Za-z0-9]+$
                      description: >-
                        Unique identifier for this webhook event delivery. Use
                        as your deduplication key.
                      example: inn_whe_2tHPeibq8Gkm6kXU819g
                      x-parser-schema-id: <anonymous-schema-4>
                    event_type:
                      type: string
                      description: The event type name, matching the top-level event field.
                      x-parser-schema-id: <anonymous-schema-5>
                    event_description:
                      type: string
                      description: Human-readable description of the event. Often empty.
                      x-parser-schema-id: <anonymous-schema-6>
                  x-parser-schema-id: BankingEventDataBase
                - type: object
                  description: >-
                    Slim transfer payload present on account.transfer.reversed
                    and account.transfer.blocked events. Omits account_id,
                    account_type, currency, amount, and memo.
                  required:
                    - entity_id
                    - entity_type
                    - transfer_id
                    - direction
                    - status
                  properties:
                    entity_id:
                      type: string
                      description: Platform-assigned numeric entity identifier.
                      example: '6830'
                      x-parser-schema-id: EntityId
                    entity_type:
                      type: string
                      description: The type of entity associated with this event.
                      enum:
                        - user
                        - business
                      x-parser-schema-id: EntityType
                    transfer_id:
                      type: string
                      description: Platform-assigned transfer identifier.
                      example: DPST_PVCVXAR4KRU2CTOT6026NIGGS
                      x-parser-schema-id: <anonymous-schema-146>
                    direction:
                      type: string
                      description: >-
                        Direction of fund movement from the entity's
                        perspective.
                      enum:
                        - credit
                        - debit
                      x-parser-schema-id: Direction
                    status:
                      type: string
                      description: Transfer status.
                      x-parser-schema-id: <anonymous-schema-147>
                  x-parser-schema-id: SlimTransferData
              x-parser-schema-id: <anonymous-schema-145>
            created_at: &ref_0
              type: string
              description: Date and time in DD-MM-YYYY hh:mm AM/PM format.
              example: 02-02-2025 06:30 PM
              x-parser-schema-id: BankingTimestamp
            updated_at: *ref_0
          x-parser-schema-id: <anonymous-schema-143>
        title: Account Transfer Reversed
        example: |-
          {
            "event": "account.transfer.reversed",
            "data": {
              "event_id": "inn_whe_2tKMLCMDKA46FRO819A",
              "event_type": "account.transfer.reversed",
              "event_description": "",
              "entity_id": "6830",
              "entity_type": "user",
              "transfer_id": "DPST_PVCVXAR4KRU2CTOT6026NIGGS",
              "direction": "credit",
              "status": "reversed"
            },
            "created_at": "02-02-2025 07:00 PM",
            "updated_at": "02-02-2025 07:00 PM"
          }
        bindings: []
        extensions:
          - id: x-parser-unique-object-id
            value: AccountTransferReversedMessage
    bindings: []
    extensions:
      - id: x-parser-unique-object-id
        value: AccountTransferReversed
sendOperations:
  - *ref_1
receiveOperations: []
sendMessages:
  - *ref_2
receiveMessages: []
extensions:
  - id: x-parser-unique-object-id
    value: AccountTransferReversed
securitySchemes: []

````