Update KYC Address
Update an existing KYC address.
Endpoint: PUT /api/v1/integration/kyc-addresses/{id}
Authentication: Required (Bearer token)
Required Headers:
Authorization: Bearer <access_token>
X-Target-Server: integration
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string (UUID) | Yes | KYC Address ID |
Request Body
All fields are optional. Only include the fields you want to update:
{
"address": "0xupdated12345678901111111"
}
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
chain_id | integer | No | Blockchain network ID (e.g., 1 = Ethereum Mainnet, 56 = BSC) |
name | string | No | KYC address name |
address | string | No | Blockchain address |
Response
Status: 200 OK
Returns the updated KYC address object.
{
"id": "2912b1ca-cb13-49ed-9ed0-1133f81c5110",
"market_id": "262bed05-5a0e-4fff-8171-39fafab66b0c",
"name": "kyc det",
"address": "0xupdated12345678901111111",
"chain_id": 1,
"created_at": "2025-12-23T21:26:50.289508Z",
"updated_at": "2025-12-23T21:26:50.289508Z"
}
Example cURL Request
curl -X PUT 'https://<base-url>/api/v1/integration/kyc-addresses/2912b1ca-cb13-49ed-9ed0-1133f81c5110' \
-H "Content-Type: application/json" \
-H "X-Target-Server: integration" \
-H "Authorization: Bearer <access_token>" \
-d '{
"address": "0xupdated12345678901111111"
}'