Clients

Returns the list of clients.

get
/clients

The clients are sorted by creation date, in descending order. The most recently created clients appear first. The clients are paginated, a maximum of 10 clients are returned per page. If there are more clients to fetch, the response includes a non null nextPageCursor field. The nextPageCursor can be injected in the cursor parameter to fetch the next page of clients. If the nextPageToken field is null, there are no more clients to fetch.

Authorizations
RIALTO_API_KEYstringRequired
Query parameters
cursorstring · date-timeOptional

The cursor to fetch the next page of clients.

Responses
200

A JSON array of clients.

application/json
get
/clients

Returns a client by ID.

get
/clients/{clientId}

Returns a client by its unique identifier.

Authorizations
RIALTO_API_KEYstringRequired
Path parameters
clientIdstring · uuidRequired

The unique identifier of the client.

Responses
200

A client.

application/json
get
/clients/{clientId}

Deletes a client by ID.

delete
/clients/{clientId}

Deletes a client by its unique identifier. A deleted client cannot be recovered. It is still queryable but its status is set to DELETED. It is not possible to create transactions with a deleted client.

Authorizations
RIALTO_API_KEYstringRequired
Path parameters
clientIdstring · uuidRequired

The unique identifier of the client.

Responses
200

Client deleted.

application/json
delete
/clients/{clientId}

Last updated