post https://ioe.droplit.io/v0/api/clients//tokens
Details
Create a client token.
An account token or server token may be used to run this endpoint.
Parameters
path
- id (required): The ID of the client.
body
- description (optional): The description of the client token.
Responses
201
{
"createdAt": "YYYY-MM-DD HH:MM:SS ENCODED",
"id": "CLIENT-ID",
"token": "TOKEN"
}
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.
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
POST https://ioe.droplit.io/api/clients/CLIENT-ID/tokens HTTP/1.1
authorization: TOKEN
content-type: application/json
{
"description": "TOKEN-DESCRIPTION"
}
Droplit Console
droplit token create --clientId CLIENT-ID
Droplit SDK
droplit.tokens.create("CLIENT-ID");