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

# Log outbound transfer event

> Log outbound transfer events



## OpenAPI

````yaml post /events/transfers/outbound
openapi: 3.0.1
info:
  title: OpenAPI spec for Swift Customer Data Processing and Risk Score
  description: A specification for Swift's customer data processing and risk score APIs
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: http://sandbox.mintlify.com
security:
  - bearerAuth: []
paths:
  /events/transfers/outbound:
    post:
      tags:
        - Transfer Activity
      summary: Log outbound transfer event
      description: Log outbound transfer events
      requestBody:
        description: Outbound transfer event details
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OutboundTransferEvent'
        required: true
      responses:
        '201':
          description: Outbound transfer event logged
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventResponse'
components:
  schemas:
    OutboundTransferEvent:
      required:
        - accountId
        - amount
        - destinationAccount
        - timestamp
      type: object
      properties:
        accountId:
          description: ID of the sending account
          type: string
        amount:
          description: Transfer amount in cents
          type: integer
          minimum: 0
        destinationAccount:
          description: Details of the receiving account
          type: object
          properties:
            accountNumber:
              type: string
            routingNumber:
              type: string
            accountType:
              type: string
              enum:
                - checking
                - savings
        timestamp:
          description: When the transfer was initiated
          type: string
          format: date-time
        status:
          description: Current status of the transfer
          type: string
          enum:
            - pending
            - processing
            - completed
            - failed
    EventResponse:
      required:
        - eventId
        - status
      type: object
      properties:
        eventId:
          description: Unique identifier for the logged event
          type: string
        status:
          description: Status of the event logging
          type: string
          enum:
            - success
            - failed
        timestamp:
          description: Time when the event was logged
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````