• Documentation
  • API Reference
Reviews
    Retrieve a reviewgetRetrieve all reviewsgetCreate a reviewpostList redline evaluations for a reviewgetRetrieve a single redline evaluationgetUpdate a redline evaluationpatchList flag violations for a reviewgetRetrieve a single flag violationgetUpdate a flag violationpatchDownload review bundle (ZIP)getDownload review audit documentgetDownload processed (redlined) contractgetDownload original uploaded contractget
Playbooks
    Retrieve all playbooksgetCreate a playbookpostRetrieve a playbookgetArchive a playbookdeleteUpdate a playbookpatch
Playbook Rules
    List playbook rulesgetCreate a playbook rulepostRetrieve a playbook rulegetDelete a playbook ruledeleteUpdate a playbook rulepatch
Invitations
    List invitationsgetCreate an invitationpostRetrieve an invitationget
Organization
    Retrieve organizationgetUpdate organizationpatch
Other endpoints
    MCP Serverpost
Schemas
powered by Zudoku
Gerri API

Organization

Endpoint:https://api.gerri.commonpaper.com

Endpoints for retrieving and updating the current organization (name and default reviewer).


Retrieve organization

GET
https://api.gerri.commonpaper.com
/v1/organization

Returns the current organization for the API key. Includes name, ingestion_email_address (read-only), default_reviewer_id, default_reviewer_email, and timestamps.

Retrieve organization › Headers

  • Authorizationstring · required

    The 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

  • dataobject · required
GET /v1/organization

Update organization

PATCH
https://api.gerri.commonpaper.com
/v1/organization

Updates the current organization. Send any of name or default_reviewer_id. default_reviewer_id must refer to an available reviewer for the organization.

Update organization › Headers

  • Authorizationstring · required

    The 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

  • namestring · minLength: 1

    New name for the organization. Omit this field to leave the name unchanged; if sent, the value must be a non-empty string.

  • default_reviewer_idstring · uuid · minLength: 1 · pattern: ^[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

  • dataobject · required
PATCH /v1/organization

InvitationsOther endpoints