Organization
Endpoints for retrieving and updating the current organization (name and default reviewer).
List organizations
Lists all organizations the authenticated user belongs to, ordered by created_at descending (newest first). Use an organization id from this list as organization_id on nested routes.
Headers
AuthorizationThe Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.
List organizations › Responses
A list of organizations for the authenticated user
Retrieve organization
Returns the organization specified in the path. Includes name, ingestion_email_address (read-only), default_reviewer_id, default_reviewer_email, and timestamps.
path Parameters
organization_idOrganization id
Headers
AuthorizationThe Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.
Retrieve organization › Responses
The current organization
Update organization
Updates the organization specified in the path. Send any of name or default_reviewer_id. default_reviewer_id must refer to an available reviewer for the organization.
path Parameters
organization_idOrganization id
Headers
AuthorizationThe Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.
Update organization › Request Body
nameNew name for the organization. Omit this field to leave the name unchanged; if sent, the value must be a non-empty string.
default_reviewer_id^[0-9a-fA-F]{8}-[0-9…User id of the new default reviewer; must be an available reviewer for the organization. Omit this field to leave the reviewer unchanged; if sent, the value must be a canonical UUID string (8-4-4-4-12 hex digits).
Update organization › Responses
Updated organization