Skip to main content
POST
/
wallets
/
account-resolve
Wallet Account Look Up
curl --request POST \
  --url https://developersandbox-api.flutterwave.com/wallets/account-resolve \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "provider": "flutterwave",
  "identifier": "00118468"
}
'
{
  "status": "success",
  "message": "<string>",
  "data": {
    "provider": "<string>",
    "identifier": "<string>",
    "name": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Trace-Id
string

A unique identifier to track this operation. It must be between 12 and 255 characters in length.

Required string length: 12 - 255
X-Scenario-Key
string

An optional scenario key that can be used to simulate specific behaviors or test different scenarios within the API. Providing this header allows you to trigger predefined responses or alter data based on the key's value, which can be useful for testing, development, or demonstrating specific functionalities. The key should be a string of 1 to 1000 characters.

Body

application/json
provider
enum<string>
required

Specifies the payment or service provider. Currently, only "flutterwave" is supported

Available options:
flutterwave
identifier
string
required

A unique identifier assigned to the merchant by the payment or service provider.

Example:

"00118468"

Response

OK

status
enum<string>
Available options:
success,
failed
message
string
data
object