Reviewer Bids
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/reviewer-bids/ |
List Reviewer Bids |
| GET | /api/reviewer-bids/{uuid}/ |
Retrieve |
| POST | /api/reviewer-bids/ |
Create |
| PUT | /api/reviewer-bids/{uuid}/ |
Update |
| PATCH | /api/reviewer-bids/{uuid}/ |
Partial Update |
| DELETE | /api/reviewer-bids/{uuid}/ |
Delete |
| Other Actions | ||
| GET | /api/reviewer-bids/my-bids/ |
Get my bids for a specific call |
| POST | /api/reviewer-bids/bulk-submit/ |
Submit multiple bids at once |
| POST | /api/reviewer-bids/submit/ |
Submit a bid on a proposal |
Core CRUD
List Reviewer Bids
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
reviewer_bids_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
bid |
array | Reviewer's preference for reviewing this proposal |
call_uuid |
string (uuid) | |
o |
array | Ordering |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
proposal_uuid |
string (uuid) | |
reviewer_uuid |
string (uuid) |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
call |
string (uri) | |
call_uuid |
string (uuid) | |
reviewer |
string (uri) | |
reviewer_uuid |
string (uuid) | |
reviewer_name |
string | |
proposal |
string (uri) | |
proposal_uuid |
string (uuid) | |
proposal_name |
string | |
bid |
any | Reviewer's preference for reviewing this proposal |
bid_display |
string | |
comment |
string | Optional comment explaining the bid |
submitted_at |
string (date-time) | |
modified_at |
string (date-time) |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
reviewer_bids_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
call |
string (uri) | |
call_uuid |
string (uuid) | |
reviewer |
string (uri) | |
reviewer_uuid |
string (uuid) | |
reviewer_name |
string | |
proposal |
string (uri) | |
proposal_uuid |
string (uuid) | |
proposal_name |
string | |
bid |
any | Reviewer's preference for reviewing this proposal |
bid_display |
string | |
comment |
string | Optional comment explaining the bid |
submitted_at |
string (date-time) | |
modified_at |
string (date-time) |
Create
1 2 3 4 5 6 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
ReviewerBidRequest - API Source:
reviewer_bids_create
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
| Field | Type | Required | Description |
|---|---|---|---|
proposal |
string (uri) | ✓ | |
bid |
any | ✓ | Reviewer's preference for reviewing this proposal |
comment |
string | Optional comment explaining the bid |
201 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
call |
string (uri) | |
call_uuid |
string (uuid) | |
reviewer |
string (uri) | |
reviewer_uuid |
string (uuid) | |
reviewer_name |
string | |
proposal |
string (uri) | |
proposal_uuid |
string (uuid) | |
proposal_name |
string | |
bid |
any | Reviewer's preference for reviewing this proposal |
bid_display |
string | |
comment |
string | Optional comment explaining the bid |
submitted_at |
string (date-time) | |
modified_at |
string (date-time) |
Update
1 2 3 4 5 6 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
- Model Source:
ReviewerBidRequest - API Source:
reviewer_bids_update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
proposal |
string (uri) | ✓ | |
bid |
any | ✓ | Reviewer's preference for reviewing this proposal |
comment |
string | Optional comment explaining the bid |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
call |
string (uri) | |
call_uuid |
string (uuid) | |
reviewer |
string (uri) | |
reviewer_uuid |
string (uuid) | |
reviewer_name |
string | |
proposal |
string (uri) | |
proposal_uuid |
string (uuid) | |
proposal_name |
string | |
bid |
any | Reviewer's preference for reviewing this proposal |
bid_display |
string | |
comment |
string | Optional comment explaining the bid |
submitted_at |
string (date-time) | |
modified_at |
string (date-time) |
Partial Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedReviewerBidRequest - API Source:
reviewer_bids_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
proposal |
string (uri) | ||
bid |
any | Reviewer's preference for reviewing this proposal | |
comment |
string | Optional comment explaining the bid |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
call |
string (uri) | |
call_uuid |
string (uuid) | |
reviewer |
string (uri) | |
reviewer_uuid |
string (uuid) | |
reviewer_name |
string | |
proposal |
string (uri) | |
proposal_uuid |
string (uuid) | |
proposal_name |
string | |
bid |
any | Reviewer's preference for reviewing this proposal |
bid_display |
string | |
comment |
string | Optional comment explaining the bid |
submitted_at |
string (date-time) | |
modified_at |
string (date-time) |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
reviewer_bids_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body
Other Actions
Get my bids for a specific call
Get my bids for a specific call.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
reviewer_bids_my_bids_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
bid |
array | Reviewer's preference for reviewing this proposal |
call_uuid |
string (uuid) | |
o |
array | Ordering |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
proposal_uuid |
string (uuid) | |
reviewer_uuid |
string (uuid) |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
call |
string (uri) | |
call_uuid |
string (uuid) | |
reviewer |
string (uri) | |
reviewer_uuid |
string (uuid) | |
reviewer_name |
string | |
proposal |
string (uri) | |
proposal_uuid |
string (uuid) | |
proposal_name |
string | |
bid |
any | Reviewer's preference for reviewing this proposal |
bid_display |
string | |
comment |
string | Optional comment explaining the bid |
submitted_at |
string (date-time) | |
modified_at |
string (date-time) |
Submit multiple bids at once
Submit multiple bids at once.
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
- Model Source:
ReviewerBulkBidRequest - API Source:
reviewer_bids_bulk_submit
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Field | Type | Required |
|---|---|---|
bids |
array of objects | ✓ |
bids.proposal_uuid |
string (uuid) | ✓ |
bids.bid |
string | ✓ |
bids.comment |
string |
200 -
| Field | Type |
|---|---|
submitted |
integer |
Submit a bid on a proposal
Submit a bid on a proposal.
1 2 3 4 5 6 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
ReviewerBidSubmitRequest - API Source:
reviewer_bids_submit
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
| Field | Type | Required |
|---|---|---|
proposal_uuid |
string (uuid) | ✓ |
bid |
string | ✓ |
comment |
string |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
call |
string (uri) | |
call_uuid |
string (uuid) | |
reviewer |
string (uri) | |
reviewer_uuid |
string (uuid) | |
reviewer_name |
string | |
proposal |
string (uri) | |
proposal_uuid |
string (uuid) | |
proposal_name |
string | |
bid |
any | Reviewer's preference for reviewing this proposal |
bid_display |
string | |
comment |
string | Optional comment explaining the bid |
submitted_at |
string (date-time) | |
modified_at |
string (date-time) |