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

Create Client

POST
/v1/client
Last modified:2025-08-29 13:01:25
Submits a new client profile for credit review, including name, country, contact details, address, and application date.

Request

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

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠401Unauthorized
🟠400Bad Request
🟠422Parameter Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/client' \
--header 'X-Signature: dGVzdF9leGFtcGxlX3NpZ25hdHVyZV9iYXNlNjRfZW5jb2RlZA==' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "string",
    "idempotency_key": "string",
    "email": "string",
    "country": "string",
    "address": "string",
    "currency": "string",
    "liquidity_type": "chain"
}'
Response Response Example
200 - Example 1
{
    "status": "string",
    "timestamp": 0,
    "data": {
        "id": "string",
        "name": "string",
        "status": "string",
        "credit_status": "string",
        "created_at": "string",
        "email": "string",
        "country": "string",
        "address": "string",
        "currency": "string",
        "bank_information": {
            "iban": "string",
            "account_number": "string",
            "swift_code": "string"
        },
        "documents": [
            {
                "name": "string",
                "key": "string",
                "status": "string",
                "reason": "string"
            }
        ]
    }
}
Modified at 2025-08-29 13:01:25
Previous
Webhooks
Next
Upload Document
Built with