Registration Flow

Create client

POST /v1/clients/

query = {
    "legal_entity_uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
data = {
    "type": "individual",
    "email": "string",
    "username": "string",
    "country_code": "string",
    "first_name": "string",
    "last_name": "string",
    "company_name": "string",
    "phone": "string"
}

Note: Email confirmation is not provided upon registration.

Get client list

GET /v1/clients/

query = {
    "legal_entity_uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}

Get client’s info

GET /v1/clients/info/

query = {
    "legal_entity_uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "client_uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}