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

# Resolve a GlobalTravelWallet recipient

> Look up a GTW wallet user by their 10-character public ID before creating a
payout beneficiary. Returns a masked name for confirmation plus the currencies
that recipient can receive. Create the beneficiary with `accountType: gtw_wallet`
and the publicId in `accountNumber`. GTW payouts are same-currency only.




## OpenAPI

````yaml openapi.json get /v1/payout-recipients/gtw/{publicId}
openapi: 3.0.0
info:
  title: Inflow API
  version: 1.0.0
  description: API service for managing customer cards
  contact:
    name: API Support
servers:
  - url: https://sandbox.inflowafrica.com/api
    description: Sandbox
  - url: https://app.inflowpay.net/api
    description: Production
  - url: http://localhost:3000/api
    description: Local
security:
  - bearerAuth: []
tags: []
paths:
  /v1/payout-recipients/gtw/{publicId}:
    get:
      tags:
        - External API - Payouts
      summary: Resolve a GlobalTravelWallet recipient
      description: >
        Look up a GTW wallet user by their 10-character public ID before
        creating a

        payout beneficiary. Returns a masked name for confirmation plus the
        currencies

        that recipient can receive. Create the beneficiary with `accountType:
        gtw_wallet`

        and the publicId in `accountNumber`. GTW payouts are same-currency only.
      parameters:
        - in: path
          name: publicId
          required: true
          schema:
            type: string
            example: A7K2M9QX4T
      responses:
        '200':
          description: Recipient resolved
        '400':
          description: Malformed publicId
        '404':
          description: Recipient not found
        '502':
          description: Wallet platform unreachable
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Enter JWT token
    apiKeyAuth:
      type: http
      scheme: bearer
      description: Enter your API key starting with gtw_sk_

````