opensesh docs

Get a submission

GET
/events/{eventId}/submissions/{submissionId}

Full detail: answers, participants, reviews, decision state, and history.

Authorization

bearerAuth
AuthorizationBearer <token>

An organization API key (osk_…)

In: header

Path Parameters

eventId*string
submissionId*string

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/events/string/submissions/string"
{  "submission": {    "id": "string",    "eventId": "string",    "code": "string",    "status": "draft",    "cancelledAt": "string",    "cancelledBy": "organizer",    "title": "string",    "description": "string",    "format": "string",    "source": "string",    "submittedAt": "string",    "createdAt": "string",    "notifiedAt": "string",    "tracks": [      {        "id": "string",        "name": "string",        "color": "string"      }    ],    "tags": [      {        "id": "string",        "name": "string"      }    ],    "speakers": [      {        "id": "string",        "name": "string",        "email": "string",        "role": "string",        "position": 0,        "bioPresent": true,        "headshotUrl": "string",        "confirmedAt": "string"      }    ],    "rating": 0,    "reviewCount": 0,    "reviewComments": [      "string"    ]  },  "answers": [    {      "id": "string",      "section": "abstract",      "label": "string",      "fieldType": "text",      "position": 0,      "value": "string"    }  ],  "reviews": [    {      "id": "string",      "reviewerId": "string",      "reviewerName": "string",      "reviewerImage": "string",      "decision": "approve",      "score": 0,      "comment": "string",      "updatedAt": "string"    }  ],  "roundReviews": [    {      "assignment": {        "id": "string",        "createdAt": "string",        "updatedAt": "string",        "roundId": "string",        "submissionId": "string",        "eventMemberId": "string",        "status": "pending",        "assignedAt": "string",        "completedAt": "string",        "recusedAt": "string",        "recusalReason": "string"      },      "reviewerName": "string",      "reviewerEmail": "string",      "answers": [        {          "criterionId": "string",          "label": "string",          "type": "numeric",          "numericValue": 0,          "textValue": "string",          "optionValue": "string"        }      ]    }  ],  "activity": [    {      "id": "string",      "at": "string",      "kind": "created",      "label": "string",      "detail": "string",      "actorName": "string"    }  ],  "emails": [    {      "id": "string",      "contactId": "string",      "recipient": "string",      "type": "string",      "subject": "string",      "body": "string",      "status": "string",      "sentAt": "string",      "createdAt": "string"    }  ]}