📖
Inyo Developer Portal
  • API REFERENCES
    • Payments Gateway v2
      • Getting started
      • Background
        • System architecture
        • Gateway environment settings
      • Authentication Methods
      • Environments
      • Technical Resources
      • Mitigating Fraud
      • APIs
        • Tokenizing cards
        • Payment
          • Pull Transaction
            • Handling AVS / CVC
            • Handling 3D secure
          • Push Transaction
          • Pull and push in one step
          • Capture
          • Refund
          • Void
          • Get a payment
          • Get a list
        • Webhooks
        • Domain tables
          • Response Code
          • Payment Status
        • Test data
          • Cards
    • Remittances
      • Getting Started
      • Authentication
      • Data Population
        • Country
        • State
        • Banks
        • Payers
        • Settlement Rates
      • Sender
        • Sender Object
        • Register a Sender
        • User Agreement
        • Get Sender by ID
        • Sender Verification
          • ID Documents
            • Expired ID Documents
          • KYC Status
          • KYC Using Widget
          • KYC Using API
            • Get KYC fields
            • Update KYC Information
            • Initiate KYC
            • Get KYC Information
          • Sender Tier Upgrade
        • Sender ID Information
      • Funding Account
        • Add Funding Account
          • OAuth Integration
        • Funding Account Object
        • Get Funding Account
        • Delete Funding Account
      • Recipient
        • Recipient Object
        • Add a Recipient
        • Get Recipient Details
        • Update Recipient
        • Recipient Document
      • Recipient Account
        • Recipient Account Object
        • Add a Recipient Account
        • Get Recipient Account
        • Get Account Information
      • Transaction
        • Transaction Object
        • Get Transaction Limits
        • Create a Transaction
          • 3DS Verification
          • Bonus/Discount
        • Get Transaction Details
        • Cancel Transaction
        • Delivery Request
        • Self-Payout
        • Transaction Invoice
      • Webhooks
        • Subscriptions
          • Subscribe
          • List Subscriptions
          • Pause Subscriptions
          • Remove Subscription
        • Integration
        • Events
      • Widget
        • Widget v1.0
          • Widget v1.0 Types
        • Widget v2.0
      • SANDBOX
        • Test Values
          • Geo-Fencing
          • Sender Verification
          • Funding Account
          • Transaction
  • USE CASE
    • Remittance
Powered by GitBook
On this page
  1. API REFERENCES
  2. Remittances
  3. Recipient Account

Get Account Information

Read on obtaining wallet/bank account details

This API provides information about account holder from the payer/bank if available. It can be mostly used to obtain wallet account holder name and status.

POST /v2/senders/{{senderId}}/recipients/{{recipientId}}/accounts/information

Field
Required
Type
Description

senderId

Yes, in URL

UUID

Sender ID

recipientId

Yes, in URL

UUID

Recipient ID

identification_value

Yes, for WALLET payout_method

String

Recipient wallet id

identification_type

No

String

Wallet type. Enumerated value: TEL. The default value for identification_type is TEL

account_number

Yes, for BANK_DEPOSIT payout_method

payout_method

Yes

String

Payout method type. Enumerated value: WALLET, BANK_DEPOSIT

recipient_id

Response

UUID

Recipient ID

payload

Response

Object

payload.status

Response

String

Status of the recipient wallet. AVAILABLE, UNAVAILABLE, UNREGISTER, SERVICE_NOT_PRESENT

Details on the above values

AVAILABLE : The wallet/bank is available. UNAVAILABLE: The wallet/bank is unavailable.

UNREGISTER : The MSISDN is not active. SERVICE_NOT_PRESENT : This API service is not available.

payload.full_name

Response

String

Full name of the account holder

payload.identifier

Response

String

Recipient wallet ID

curl --location --request POST {{url}}/v2/senders/{{senderId}}/recipients/{{recipientId}}/accounts/information' \
--header 'X-Client-Id: clientid' \
--header 'X-Client-Secret: clientsecret' \
--header 'Content-Type: application/json' \
--data-raw '{
  "identification_value":"254723993187",
  "identification_type": "TEL",
  "payout_method": "WALLET"
  }
'
{
    "recipient_id": "string",
    "payout_method": "WALLET",
    "payload": {
        "status": "AVAILABLE",
        "full_name": "JOSEPH MBUGUA NJEHU",
        "identifier": "254723993187"
    }
}
PreviousGet Recipient AccountNextTransaction

Last updated 9 months ago