Get a client.

Details

Get a client.

An account token or server token may be used to run this endpoint.

Parameters

path

  • id (required): The ID of the client.

Responses

200

{
    "createdAt": "YYYY-MM-DD HH:MM:SS ENCODED",
    "description": "CLIENT-DESCRIPTION",
    "ecosystemId": "ECOSYSTEM-ID",
    "id": "CLIENT-ID",
    "name": "CLIENT-NAME",
    "type": "CLIENT-TYPE"
}

400

  • Client Invalid: The standard error structure defines this error as invalid parameters, with an invalid ID. In this context, it means that the ID given for a client is invalid.
  • No Query String Allowed: The standard error structure defines this error as invalid parameters, with additional parameters in the query string. In this context, it means that no query string is allowed at all when calling this endpoint.

404

  • Client Not Found: This error means that a client with the given ID was not found. This is distinct from an invalid client ID being specified; this means that the client ID once existed, but no longer does.

Examples

HTTP

GET https://ioe.droplit.io/api/clients/CLIENT-ID HTTP/1.1
authorization: TOKEN

Droplit Console

droplit client info CLIENT-ID

Droplit SDK

droplit.clients.info("CLIENT-ID");
Language
Authorization
Header
Click Try It! to start a request and see the response here!