Create API Key
POST
/api/accounts/me/api-keysUse this endpoint to create an API key with an existing API key.
Request
Request samples
Responses
OK(200)
Bad Request(400)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
id
string <uuid>
required
ID assigned to this API key.
created_at
string <date-time>
required
Date (ISO 8601) that this API key was created.
token
string
required
The token for this API Key, only returned after creation.
Example:
apikeyv1_asdf...
Example
{
"id": "5826e10c-aeef-4de0-9fac-bbd7f9313a2b",
"created_at": "2024-05-02T12:57:26.432Z",
"token": "apikeyv1_asdf"
}
Last modified: a year ago