Nukta Docs
API Reference

API Reference

Manage organizations, members, and services over HTTP.

API Reference

The Nukta Admin API is served from https://admin.nukta.app/api. Authenticate with a Nukta access token that carries an admin scope.

GET /organizations/:id

Returns an organization and its settings.

{
  "id": "org_12345",
  "name": "Acme Inc.",
  "plan": "team"
}

POST /organizations/:id/members

Invites a member to the organization.

POST /organizations/org_12345/members HTTP/1.1
Host: admin.nukta.app
Authorization: Bearer <token>
Content-Type: application/json

{ "email": "teammate@example.com", "role": "member" }

GET /organizations/:id/audit-logs

Returns a paginated list of audit events.

ParameterDescription
cursorPagination cursor from a prior page.
limitPage size, up to 100.

On this page