opensesh docs

Auto-distribute submissions across reviewers

POST
/events/{eventId}/review-rounds/{roundId}/auto-distribute

Fills the round's review quorum breadth-first, preferring track affinity while honoring caps and conflicts. Set dryRun to preview without inserting.

Authorization

bearerAuth
AuthorizationBearer <token>

An organization API key (osk_…)

In: header

Path Parameters

eventId*string
roundId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/events/string/review-rounds/string/auto-distribute" \  -H "Content-Type: application/json" \  -d '{    "trackIds": [      "string"    ]  }'
{  "planned": [    {      "submissionId": "string",      "eventMemberId": "string",      "tier": "in_track"    }  ],  "created": 0,  "skipped": 0,  "outOfTrack": 0,  "conflictsSkipped": 0,  "shortfalls": [    {      "submissionId": "string",      "code": "string",      "missing": 0,      "reason": "caps_exhausted"    }  ]}