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

Upload Document

PUT
/v1/clients/documents
Last modified:2025-07-10 11:53:25
Attaches compliance-related documents to a specific client profile for review.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params multipart/form-data

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/v1/clients/documents' \
--header 'Authorization: Bearer <token>' \
--form 'client_id=""' \
--form 'document_key=""' \
--form 'file=@""'
Response Response Example
{
    "status": "string",
    "timestamp": "string",
    "data": {
        "id": "string",
        "name": "string",
        "key": "string",
        "status": "string",
        "reason": "string"
    }
}
Modified at 2025-07-10 11:53:25
Previous
Create Client
Next
Get Client
Built with