Call Rounds
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/call-rounds/ |
List Call Rounds |
| GET | /api/call-rounds/{uuid}/ |
Retrieve |
| Other Actions | ||
| GET | /api/call-rounds/{uuid}/reviewers/ |
Return list of reviewers for round |
Core CRUD
List Call Rounds
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
call_rounds_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
slug |
string |
start_time |
string (date-time) |
cutoff_time |
string (date-time) |
call_uuid |
string (uuid) |
call_name |
string |
status |
any |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
call_rounds_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
slug |
string |
start_time |
string (date-time) |
cutoff_time |
string (date-time) |
call_uuid |
string (uuid) |
call_name |
string |
status |
any |
Other Actions
Return list of reviewers for round
Return list of reviewers for round.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
- API Source:
call_rounds_reviewers_list
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Name | Type | Description |
|---|---|---|
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
full_name |
string |
email |
string (email) |
accepted_proposals |
integer |
rejected_proposals |
integer |
in_review_proposals |
integer |