user_id (preferred) or email. An email must resolve to exactly one user in your account; if it matches none or several, the request is rejected rather than guessed at.curl --location '/v3/api/business/reseller/clients/set_client_id' \
--header 'Idempotency-Key: 550e8400-e29b-41d4-a716-446655440000' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"user_id": "usr_10482",
"email": "ada@example.com",
"client_id": "client_abc123"
}'{
"object": "client",
"id": "client_abc123",
"user_id": "usr_10482",
"first_name": "Ada",
"last_name": "Okafor",
"email": "ada@example.com",
"phone": "08012345678",
"status": "active",
"created": 1746700000,
"message": "Client ID set successfully"
}