Arf Liquidity Docs
  1. Client
Arf Liquidity Docs
  • Introduction
  • Environments
  • IP Restrictions
  • Authentication
  • RSA4096 Examples
  • Errors
  • Webhooks
  • Client
    • Create Client
      POST
    • Upload Document
      PUT
    • Get Client
      GET
    • List Clients
      GET
    • Get Client Credit Preference
      GET
    • Create Bank Information
      POST
    • Create Chain Information
      POST
  • Credit
    • Check Credit
      GET
    • Create Credit
      POST
    • Get Credit
      GET
    • List Credits
      GET
  • Webhooks
    • List All Webhook
      GET
    • Create Webhook
      POST
    • Delete Webhook
      DELETE
  • Schemas
    • Error Schema
    • Successful Response
    • Client Detail
    • Document Detail
    • Credit Details
    • Webhook
  1. Client

Get Client Credit Preference

GET
/v1/credits/preference/{client_id}
Last modified:2025-07-10 10:12:54
Retrieves the client’s credit limits and fees determined by the compliance review results.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/credits/preference/' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "status": "string",
    "timestamp": "string",
    "data": {
        "client_id": "string",
        "minimum_commitment_amount": 0,
        "maximum_commitment_amount": 0,
        "max_limit_per_transaction": 0,
        "min_limit_per_transaction": 0,
        "max_limit_per_day": 0,
        "min_limit_per_day": 0,
        "minimum_commitment_period": 0,
        "maximum_commitment_period": 0,
        "tenor": 0,
        "credit_agreement_date": "string",
        "credit_end_date": "string",
        "credit_start_date": "string",
        "interest": {
            "currency": "string",
            "value": "string"
        }
    }
}
Modified at 2025-07-10 10:12:54
Previous
List Clients
Next
Create Bank Information
Built with