RaisFastRaisFast

Tokens

API Token Management

GET
/api/v1/tokens

Authorization

bearer_auth
AuthorizationBearer <token>

In: header

Response Body

curl -X GET "https://example.com/api/v1/tokens"
Empty
POST
/api/v1/tokens

Authorization

bearer_auth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X POST "https://example.com/api/v1/tokens" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "scopes": [      "string"    ]  }'
Empty
DELETE
/api/v1/tokens/{id}

Authorization

bearer_auth
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Token ID

Response Body

curl -X DELETE "https://example.com/api/v1/tokens/string"
Empty