Get a recipient's details

Returns the details of a particular recipient

URI

GET

https://api.tryduplo.com/v1/recipients/:business_id/:recipient_ref?expand=true

Parameters

Authorization string

set value to Bearer SECRET_KEY

Path Param

business_id string required

Bussiness ID

recipient _ref string

Recipient reference

Query Param

expand boolean

Expand the recipient details

Sample request

curl --location --request GET 'https://api.tryduplo.com/v1/recipients/6acd67-b306-4642-87aa-99ba512b2601/rec_svsoIsqjh?expand=true' \
--header 'Authorization: Bearer dp_live_856879df3e6ecdb14a918e24bba6d480e056abfdba938fc23b820ac905e54bac25a71dbcdef66c97b8c72ca7e16cf03a576857261f2f16f5335ca5024620b14268823a7d78922cfdd97cefc61050139fd92a7a0c5840e016050552ccadbbec642d2ff8d35a09225c7ec4fd1e347b'

Duplo Response

{
    "data": {
        "transactions": [],
        "bank_code": "50211",
        "bank_name": "Kuda Bank",
        "account_name": "Jamie Fox",
        "account_number": "1101060326",
        "email": "jamefox@yopmail.com",
        "business_id": "986acd67-b306-4642-87aa-99ba512b2601",
        "recipient_ref": "rec_svxsfsoIsqjh",
        "created_at": "2023-01-31T23:50:25.000Z",
        "updated_at": "2023-01-31T23:50:25.000Z",
    },
    "errors": {},
    "message": "Recipient was fetched successfully"
}

Last updated