📖
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

Recipient Document

Add a document for a recipient

Recipient document may be required based on your spec sheet.

Field

Type

Description

documentType

String

Type of the recipient's documen

uploadedFile

String

File in png/ pdf/ jpeg/ jpg

documentIdNumber

String

Document identification number

Add a Recipient Document

You can use this API to add a recipient document.

POST /v2/senders/{{senderId}}/recipients/{{recipientId}}/documents

Field
Required
Type
Description

documentType

No

String

Type of the recipient's document

uploadedFile

Yes

String

File in png/ pdf/ jpeg/ jpg

documentIdNumber

No

String

Document identification number

curl --location --request POST '{{URL}}/v2/senders/{{senderId}}/recipients/{{recipientId}}/documents' \
--header 'X-Client-Id: clientId \
--header 'X-Client-Secret: clientsecret\
--form 'documentType=receiver passport' \
--form 'uploadedFile=@/home/Pictures/test.png' \
--form 'documentIdNumber=123456'
{
   "test_field": "test_value",
   "id": "26a8aede-fbdb-41c6-a332-ab8b2822348a",
   "documentType": "receiver pasport",
   "documentIdNumber": "123456",
   "uploadedDate": "2023-05-02"
}

Get Recipient Document

You can view the recent document submitted for the recipient using this document.

GET /v2/senders/{{senderId}}/recipients/{{recipientId}}/documents

curl --location --request GET '{{URL}}/v2/senders/{{senderId}}/recipients/{{recipientId}}/documents' \
--header 'X-Client-Id: clientId' \
--header 'X-Client-Secret: clientsecret'
{
   "test_field": "test_value",
   "results": [
       {
           "id": "26a8aede-fbdb-41c6-a332-ab8b2822348a",
           "fileName": "RECEIVER_IDENTITY_2023-05-02T02%3A46%3A43.475.png",
           "frontImageLink": LINK,
           "documentType": "receiver passport",
           "documentIdNumber": "1221424242",
           "uploadedDate": "2023-05-02"
       }
   ],
   "paging": {
       "total_count": 1
   }
}
PreviousUpdate RecipientNextRecipient Account

Last updated 9 months ago