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

# Get Transfer Status

> Returns the status of a transfer.



## OpenAPI

````yaml openapi.json get /accounts/transfers/{transferId}
openapi: 3.1.0
info:
  title: Sudo Sandbox API
  version: '1.0'
servers:
  - url: https://api.sandbox.sudo.cards
security:
  - sec0: []
paths:
  /accounts/transfers/{transferId}:
    get:
      summary: Get Transfer Status
      description: Returns the status of a transfer.
      operationId: get-transfer-status
      parameters:
        - name: transferId
          in: path
          description: _id of transfer from Fund Transfer endpoint.
          schema:
            type: string
          required: true
      responses:
        '200':
          description: Transfer status fetched successfully.
          headers:
            X-Powered-By:
              schema:
                type: string
              example: Express
            Access-Control-Allow-Origin:
              schema:
                type: string
              example: '*'
            X-RateLimit-Limit:
              schema:
                type: integer
              example: '250000'
            X-RateLimit-Remaining:
              schema:
                type: integer
              example: '249999'
            X-RateLimit-Reset:
              schema:
                type: integer
              example: '0'
            Content-Type:
              schema:
                type: string
              example: application/json; charset=utf-8
            ETag:
              schema:
                type: string
              example: W/"2dd-sfRBgLV2BqnKnzwqFCi2UGdBgUQ"
            Connection:
              schema:
                type: string
              example: keep-alive
            Keep-Alive:
              schema:
                type: string
              example: timeout=5
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                    description: >-
                      Status code of the response. `200` indicates a successful
                      request.
                  message:
                    type: string
                    description: Human-readable description of the result.
                  data:
                    type: object
                    description: Response payload.
                    properties:
                      _id:
                        type: string
                        description: Unique identifier of the object.
                      business:
                        type: string
                        description: Identifier of the business that owns this object.
                      type:
                        type: string
                        description: Type of the object.
                      debitAccountId:
                        type: string
                        description: Identifier of the account/wallet/card debited.
                      creditAccountId:
                        nullable: true
                        description: >-
                          Identifier of the internal account credited, or `null`
                          for external transfers.
                      beneficiaryBankCode:
                        type: string
                        description: Beneficiary bank code.
                      beneficiaryAccountNumber:
                        type: string
                        description: Beneficiary account number.
                      beneficiaryAccountName:
                        type: string
                        description: Resolved beneficiary account name.
                      amount:
                        type: integer
                        description: Amount in the minor currency unit (e.g. kobo).
                      fee:
                        type: integer
                        description: Fee charged, in the minor currency unit.
                      narration:
                        type: string
                        description: Transfer narration / description.
                      paymentReference:
                        type: string
                        description: Client-supplied unique payment reference.
                      sessionId:
                        type: string
                        description: NIP session identifier for the transfer.
                      status:
                        type: string
                        description: Current status of the object.
                      responseCode:
                        type: string
                        description: Transfer response code (`00` indicates success).
                      responseMessage:
                        type: string
                        description: Human-readable transfer response message.
                      createdAt:
                        type: string
                        format: date-time
                        description: ISO 8601 timestamp of when the object was created.
                      updatedAt:
                        type: string
                        format: date-time
                        description: >-
                          ISO 8601 timestamp of when the object was last
                          updated.
              example:
                statusCode: 200
                message: Transfer status fetched successfully.
                data:
                  _id: 6840c1aa2b3c4d5e6f700555
                  business: 670cec9d25852ba485d74273
                  type: Transfer
                  debitAccountId: 67974b365c184d20fc340889
                  creditAccountId: null
                  beneficiaryBankCode: '000014'
                  beneficiaryAccountNumber: '0123456789'
                  beneficiaryAccountName: JANE DOE
                  amount: 5000
                  fee: 10
                  narration: Payment for services
                  paymentReference: REF-250604-2156
                  sessionId: '090286250604215600123456789012'
                  status: completed
                  responseCode: '00'
                  responseMessage: Approved or completed successfully
                  createdAt: '2025-06-04T21:05:26.115Z'
                  updatedAt: '2025-06-05T09:15:00.000Z'
        '400':
          description: Validation error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                    description: >-
                      Status code of the response. `200` indicates a successful
                      request.
                  message:
                    type: string
                    description: Human-readable description of the result.
                  data:
                    nullable: true
                    description: Always `null` for error responses.
              example:
                statusCode: 400
                message: Invalid transfer id.
                data: null
        '401':
          description: Authentication failed — missing or invalid API key.
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                    description: >-
                      Status code of the response. `200` indicates a successful
                      request.
                  message:
                    type: string
                    description: Human-readable description of the result.
                  data:
                    nullable: true
                    description: Response payload.
              example:
                statusCode: 401
                message: >-
                  Unauthorized. Provide a valid API key in the Authorization
                  header.
                data: null
        '404':
          description: Not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                    description: >-
                      Status code of the response. `200` indicates a successful
                      request.
                  message:
                    type: string
                    description: Human-readable description of the result.
                  data:
                    nullable: true
                    description: Always `null` for error responses.
              example:
                statusCode: 404
                message: Transfer not found.
                data: null
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: bearer
      x-default: '{{APIKey}}'

````