GET
/
v1
/
payer
/
{clientUserId}
/
payment-details
Get payment details for a user
curl --request GET \
  --url https://api.request.network/v1/payer/{clientUserId}/payment-details \
  --header 'x-api-key: <x-api-key>'
{
  "paymentDetails": [
    {
      "id": "fa898aec-519c-46be-9b4c-e76ef4ff99d9",
      "userId": "a25a4274-8f50-4579-b476-8f35b297d4ad",
      "bankName": "Chase",
      "accountName": "Gordon's Chase Business Account",
      "beneficiaryType": "business",
      "accountNumber": "253009233489",
      "routingNumber": "026013356",
      "currency": "usd",
      "status": "approved",
      "rails": "local"
    }
  ]
}

Headers

x-api-key
string
required

API key for authentication

Path Parameters

clientUserId
string
required

The client user ID to get payment details for

Example:

"user-123"

Query Parameters

paymentDetailsId
string

Optional ID of specific payment details to retrieve

Example:

"fa898aec-519c-46be-9b4c-e76ef4ff99d9"

Response

Payment details retrieved successfully

paymentDetails
object[]