REST API Endpoints — Organization & Access

This is part of the REST API Endpoint Reference. For authentication, rate limits, and general API usage, see REST API – Getting Started.

Endpoint Reference Pages


Organizations

Base path: /api/v1/organizations

MethodPathDescriptionScope
GET/api/v1/organizations/meGet current organization detailsread:organization
PATCH/api/v1/organizations/meUpdate organization settingswrite:organization
GET/api/v1/organizations/me/usageGet monthly test usage statisticsread:organization
GET/api/v1/organizations/me/statisticsGet organization statisticsread:organization
GET/api/v1/organizations/me/trialCheck trial eligibilityread:organization

Team

Base path: /api/v1/team

Most team endpoints require admin role. These are available to all members:

MethodPathDescriptionScope
PATCH/api/v1/team/invites/:id/acceptAccept a team invitationwrite:profile
DELETE/api/v1/team/members/meLeave the organizationwrite:profile

Users

Base path: /api/v1/users

MethodPathDescriptionScope
GET/api/v1/users/meGet current user profileread:profile

Personal Access Tokens

Base path: /api/v1/tokens

MethodPathDescriptionScope
POST/api/v1/tokensCreate a new API tokenmanage:tokens
GET/api/v1/tokensList all active tokensread:tokens
GET/api/v1/tokens/:idGet token detailsread:tokens
DELETE/api/v1/tokens/:idRevoke a token (cannot be undone)manage:tokens

Related Articles