Authentication
Create a CLI token
Create a new CLI token for API access. The plain token value is returned only once in the response — store it securely.
post/api/cli-tokens
Request body
Example request
{
"name": "CI/CD Pipeline",
"expiresIn": 7776000
}Response
Token created. The key field contains the plain token — store it securely, it cannot be retrieved again.
Example response
{
"token": {
"key": "sck_live_a1b2c3d4e5f6789012345678901234ab"
}
}