Create an ApiToken
Creates a new ApiToken. The ApiToken is returned, including its token
field, which you should record for future reference. Be careful, this token is only returned once, when the token is created.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token. More info here
Body
An ApiToken is a unique identifier that you can use to authenticate requests to the API. You can create as many ApiTokens as you need.
The name of the ApiToken.
The time this ApiToken expires.
Response
An ApiToken is a unique identifier that you can use to authenticate requests to the API. You can create as many ApiTokens as you need.
String representing the object’s type. Objects of the same type share the same value.
This is the internal ID for this ApiToken. You don’t need to record this information, since you will not need to use it.
The ID of the user that created this ApiToken.
The name of the ApiToken.
Whether this ApiToken was created from the browser.
The last time this ApiToken was used.
The time this ApiToken expires.
Time at which the object was created.
Time at which the object was last updated.
The actual token that you will use to authenticate your requests. > Be careful, this token is only returned once, when the token is created.