API endpoint for Tokens

A token represents an authentication credential that grants API access under a specified user context. Tokens can be scoped for read-only (pull) or read-write (push) operations and assigned to specific users.

Token object attributes

id string
Unique identifier of the object

kind_key string
Type of token. Must be either pull or push.

state string
Whether token is active or disabled.

assignee_id string
ID of the user to whom the token is assigned.

description string
A human-readable description for the token.

created_at timestamp
Date & time when the token was created.

List all tokens

Retrieve a list of tokens for an account. The response is paginated.

GET https://api.fury.io/1/tokens

Create token

Create a new token.

POST https://api.fury.io/1/tokens
Query parameters

kind_key string
Permission level: pull or push

assignee_id string
Username or ID of the user to whom the token will be assigned.

description string, optional
A human-readable description for the token.

Deleting a token

Delete a token by ID.

DELETE https://api.fury.io/1/tokens/tok_eb3c12
Path parameters

id string
Unique identifier for a token.