Proposal Reviews
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/proposal-reviews/ |
List Proposal Reviews |
| GET | /api/proposal-reviews/{uuid}/ |
Retrieve |
| POST | /api/proposal-reviews/ |
Create |
| PUT | /api/proposal-reviews/{uuid}/ |
Update |
| PATCH | /api/proposal-reviews/{uuid}/ |
Partial Update |
| DELETE | /api/proposal-reviews/{uuid}/ |
Delete |
| Other Actions | ||
| POST | /api/proposal-reviews/{uuid}/accept/ |
Accept a review, changing its state to IN_REVIEW |
| POST | /api/proposal-reviews/{uuid}/reject/ |
Reject a review, changing its state to REJECTED |
| POST | /api/proposal-reviews/{uuid}/submit/ |
Submit a review, changing its state to SUBMITTED |
Core CRUD
List Proposal Reviews
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
proposal_reviews_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
call_uuid |
string (uuid) | |
o |
array | Ordering |
organization_uuid |
string (uuid) | |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
proposal |
string | |
proposal_name |
string | |
proposal_uuid |
string (uuid) | |
reviewer_uuid |
string (uuid) | |
state |
array |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
proposal |
string (uri) | |
proposal_name |
string | |
proposal_uuid |
string (uuid) | |
proposal_slug |
string | |
reviewer |
string (uri) | |
reviewer_full_name |
string | |
reviewer_uuid |
string (uuid) | |
anonymous_reviewer_name |
string | Generate an anonymous reviewer identifier like 'Reviewer 1', 'Reviewer 2'. Returns None if the review is not associated with a proposal. |
state |
any | |
review_end_date |
string (date-time) | |
summary_score |
integer | |
summary_public_comment |
string | |
summary_private_comment |
string | |
round_uuid |
string (uuid) | |
round_name |
string | |
round_slug |
string | |
round_cutoff_time |
string (date-time) | |
round_start_time |
string (date-time) | |
call_name |
string | |
call_uuid |
string (uuid) | |
call_slug |
string | |
call_managing_organisation_uuid |
string (uuid) | |
comment_project_title |
string | |
comment_project_summary |
string | |
comment_project_is_confidential |
string | |
comment_project_has_civilian_purpose |
string | |
comment_project_description |
string | |
comment_project_duration |
string | |
comment_project_supporting_documentation |
string | |
comment_resource_requests |
string | |
comment_team |
string | |
created |
string (date-time) | |
modified |
string (date-time) |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
proposal_reviews_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
proposal |
string (uri) | |
proposal_name |
string | |
proposal_uuid |
string (uuid) | |
proposal_slug |
string | |
reviewer |
string (uri) | |
reviewer_full_name |
string | |
reviewer_uuid |
string (uuid) | |
anonymous_reviewer_name |
string | Generate an anonymous reviewer identifier like 'Reviewer 1', 'Reviewer 2'. Returns None if the review is not associated with a proposal. |
state |
any | |
review_end_date |
string (date-time) | |
summary_score |
integer | |
summary_public_comment |
string | |
summary_private_comment |
string | |
round_uuid |
string (uuid) | |
round_name |
string | |
round_slug |
string | |
round_cutoff_time |
string (date-time) | |
round_start_time |
string (date-time) | |
call_name |
string | |
call_uuid |
string (uuid) | |
call_slug |
string | |
call_managing_organisation_uuid |
string (uuid) | |
comment_project_title |
string | |
comment_project_summary |
string | |
comment_project_is_confidential |
string | |
comment_project_has_civilian_purpose |
string | |
comment_project_description |
string | |
comment_project_duration |
string | |
comment_project_supporting_documentation |
string | |
comment_resource_requests |
string | |
comment_team |
string | |
created |
string (date-time) | |
modified |
string (date-time) |
Create
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
- Model Source:
ProposalReviewRequest - API Source:
proposal_reviews_create
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Field | Type | Required |
|---|---|---|
proposal |
string (uri) | ✓ |
reviewer |
string (uri) | |
summary_score |
integer | |
summary_public_comment |
string | |
summary_private_comment |
string | |
comment_project_title |
string | |
comment_project_summary |
string | |
comment_project_is_confidential |
string | |
comment_project_has_civilian_purpose |
string | |
comment_project_description |
string | |
comment_project_duration |
string | |
comment_project_supporting_documentation |
string | |
comment_resource_requests |
string | |
comment_team |
string |
201 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
proposal |
string (uri) | |
proposal_name |
string | |
proposal_uuid |
string (uuid) | |
proposal_slug |
string | |
reviewer |
string (uri) | |
reviewer_full_name |
string | |
reviewer_uuid |
string (uuid) | |
anonymous_reviewer_name |
string | Generate an anonymous reviewer identifier like 'Reviewer 1', 'Reviewer 2'. Returns None if the review is not associated with a proposal. |
state |
any | |
review_end_date |
string (date-time) | |
summary_score |
integer | |
summary_public_comment |
string | |
summary_private_comment |
string | |
round_uuid |
string (uuid) | |
round_name |
string | |
round_slug |
string | |
round_cutoff_time |
string (date-time) | |
round_start_time |
string (date-time) | |
call_name |
string | |
call_uuid |
string (uuid) | |
call_slug |
string | |
call_managing_organisation_uuid |
string (uuid) | |
comment_project_title |
string | |
comment_project_summary |
string | |
comment_project_is_confidential |
string | |
comment_project_has_civilian_purpose |
string | |
comment_project_description |
string | |
comment_project_duration |
string | |
comment_project_supporting_documentation |
string | |
comment_resource_requests |
string | |
comment_team |
string | |
created |
string (date-time) | |
modified |
string (date-time) |
Update
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
ProposalReviewRequest - API Source:
proposal_reviews_update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
proposal |
string (uri) | ✓ |
reviewer |
string (uri) | |
summary_score |
integer | |
summary_public_comment |
string | |
summary_private_comment |
string | |
comment_project_title |
string | |
comment_project_summary |
string | |
comment_project_is_confidential |
string | |
comment_project_has_civilian_purpose |
string | |
comment_project_description |
string | |
comment_project_duration |
string | |
comment_project_supporting_documentation |
string | |
comment_resource_requests |
string | |
comment_team |
string |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
proposal |
string (uri) | |
proposal_name |
string | |
proposal_uuid |
string (uuid) | |
proposal_slug |
string | |
reviewer |
string (uri) | |
reviewer_full_name |
string | |
reviewer_uuid |
string (uuid) | |
anonymous_reviewer_name |
string | Generate an anonymous reviewer identifier like 'Reviewer 1', 'Reviewer 2'. Returns None if the review is not associated with a proposal. |
state |
any | |
review_end_date |
string (date-time) | |
summary_score |
integer | |
summary_public_comment |
string | |
summary_private_comment |
string | |
round_uuid |
string (uuid) | |
round_name |
string | |
round_slug |
string | |
round_cutoff_time |
string (date-time) | |
round_start_time |
string (date-time) | |
call_name |
string | |
call_uuid |
string (uuid) | |
call_slug |
string | |
call_managing_organisation_uuid |
string (uuid) | |
comment_project_title |
string | |
comment_project_summary |
string | |
comment_project_is_confidential |
string | |
comment_project_has_civilian_purpose |
string | |
comment_project_description |
string | |
comment_project_duration |
string | |
comment_project_supporting_documentation |
string | |
comment_resource_requests |
string | |
comment_team |
string | |
created |
string (date-time) | |
modified |
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:
PatchedProposalReviewRequest - API Source:
proposal_reviews_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
summary_score |
integer | |
summary_public_comment |
string | |
summary_private_comment |
string | |
comment_project_title |
string | |
comment_project_summary |
string | |
comment_project_is_confidential |
string | |
comment_project_has_civilian_purpose |
string | |
comment_project_description |
string | |
comment_project_duration |
string | |
comment_project_supporting_documentation |
string | |
comment_resource_requests |
string | |
comment_team |
string |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
proposal |
string (uri) | |
proposal_name |
string | |
proposal_uuid |
string (uuid) | |
proposal_slug |
string | |
reviewer |
string (uri) | |
reviewer_full_name |
string | |
reviewer_uuid |
string (uuid) | |
anonymous_reviewer_name |
string | Generate an anonymous reviewer identifier like 'Reviewer 1', 'Reviewer 2'. Returns None if the review is not associated with a proposal. |
state |
any | |
review_end_date |
string (date-time) | |
summary_score |
integer | |
summary_public_comment |
string | |
summary_private_comment |
string | |
round_uuid |
string (uuid) | |
round_name |
string | |
round_slug |
string | |
round_cutoff_time |
string (date-time) | |
round_start_time |
string (date-time) | |
call_name |
string | |
call_uuid |
string (uuid) | |
call_slug |
string | |
call_managing_organisation_uuid |
string (uuid) | |
comment_project_title |
string | |
comment_project_summary |
string | |
comment_project_is_confidential |
string | |
comment_project_has_civilian_purpose |
string | |
comment_project_description |
string | |
comment_project_duration |
string | |
comment_project_supporting_documentation |
string | |
comment_resource_requests |
string | |
comment_team |
string | |
created |
string (date-time) | |
modified |
string (date-time) |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
proposal_reviews_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
Accept a review, changing its state to IN_REVIEW
Accept a review, changing its state to IN_REVIEW.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
proposal_reviews_accept
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 - No response body
Reject a review, changing its state to REJECTED
Reject a review, changing its state to REJECTED.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
proposal_reviews_reject
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 - No response body
Submit a review, changing its state to SUBMITTED
Submit a review, changing its state to SUBMITTED.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
ReviewSubmitRequest - API Source:
proposal_reviews_submit
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required |
|---|---|---|
summary_score |
integer | |
summary_public_comment |
string | |
summary_private_comment |
string |
200 - No response body