List Active
GET/workstations
List all Workstations currently active on your personal account or organization. Results are paginated using timestamp-based cursors. You can learn more about cursor-based pagination here.
The pagination works as follows:
- Use
before
to get Workstations created before a specific timestamp - Use
after
to get Workstations created after a specific timestamp - Use
limit
to control the number of results (default: 20, max: 100) - Use
cursor
to navigate through pages of results using thenext_cursor
orprevious_cursor
from the response
If neither before
nor after
are provided, before
defaults to the current time.
When both are provided, results will be filtered to Workstations created between the two timestamps.
The cursor
parameter takes precedence over timestamp filters when provided.
Request
Responses
- 200
- 400
- 401
- 429
- 500
Successfully listed the set of active Workstations.
Invalid Request Format - check API documentation for proper syntax.
Unauthorized - missing or invalid API key.
Too Many Requests - you have exceeded the rate limit for your account. Please wait before making additional requests.
Internal Server Error - please retry your request.