Assignment Items
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/assignment-items/ |
List Assignment Items |
| GET | /api/assignment-items/{uuid}/ |
Retrieve |
| POST | /api/assignment-items/ |
Create |
| PUT | /api/assignment-items/{uuid}/ |
Update |
| PATCH | /api/assignment-items/{uuid}/ |
Partial Update |
| DELETE | /api/assignment-items/{uuid}/ |
Delete |
| Other Actions | ||
| GET | /api/assignment-items/{uuid}/suggest_alternatives/ |
Suggest alternative reviewers for a declined assignment |
| POST | /api/assignment-items/{uuid}/accept/ |
Accept this assignment item. Creates a Review record |
| POST | /api/assignment-items/{uuid}/decline/ |
Decline this assignment item |
| POST | /api/assignment-items/{uuid}/reassign/ |
Reassign this item to a different reviewer |
Core CRUD
List Assignment Items
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- Model Source:
AssignmentItemOEnum - Model Source:
AssignmentItemStatus - API Source:
assignment_items_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
batch_uuid |
string (uuid) | |
call_uuid |
string (uuid) | |
has_coi |
boolean | |
min_affinity_score |
number (float) | |
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) | |
status |
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) | |
batch |
string (uri) | |
proposal |
string (uri) | |
proposal_uuid |
string (uuid) | |
proposal_name |
string | |
proposal_slug |
string | |
status |
any | |
status_display |
string | |
affinity_score |
number (double) | Affinity score used for assignment (0-1). |
has_coi |
boolean | Whether COI was detected during pre-check. |
coi_count |
integer | Count of COI records blocking this assignment. |
responded_at |
string (date-time) | |
decline_reason |
string | Reason provided by reviewer for declining. |
review |
string (uri) | The Review record created when this assignment was accepted. |
review_uuid |
string (uuid) | |
reassign_count |
integer | Number of times this proposal has been reassigned. |
created |
string (date-time) |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
assignment_items_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) | |
batch |
string (uri) | |
proposal |
string (uri) | |
proposal_uuid |
string (uuid) | |
proposal_name |
string | |
proposal_slug |
string | |
status |
any | |
status_display |
string | |
affinity_score |
number (double) | Affinity score used for assignment (0-1). |
has_coi |
boolean | Whether COI was detected during pre-check. |
coi_count |
integer | Count of COI records blocking this assignment. |
responded_at |
string (date-time) | |
decline_reason |
string | Reason provided by reviewer for declining. |
review |
string (uri) | The Review record created when this assignment was accepted. |
review_uuid |
string (uuid) | |
reassign_count |
integer | Number of times this proposal has been reassigned. |
created |
string (date-time) |
Create
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | |
- Model Source:
AssignmentItemRequest - API Source:
assignment_items_create
1 2 3 4 5 6 7 8 9 10 | |
| Field | Type | Required | Description |
|---|---|---|---|
decline_reason |
string | Reason provided by reviewer for declining. |
201 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
batch |
string (uri) | |
proposal |
string (uri) | |
proposal_uuid |
string (uuid) | |
proposal_name |
string | |
proposal_slug |
string | |
status |
any | |
status_display |
string | |
affinity_score |
number (double) | Affinity score used for assignment (0-1). |
has_coi |
boolean | Whether COI was detected during pre-check. |
coi_count |
integer | Count of COI records blocking this assignment. |
responded_at |
string (date-time) | |
decline_reason |
string | Reason provided by reviewer for declining. |
review |
string (uri) | The Review record created when this assignment was accepted. |
review_uuid |
string (uuid) | |
reassign_count |
integer | Number of times this proposal has been reassigned. |
created |
string (date-time) |
Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
AssignmentItemRequest - API Source:
assignment_items_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
decline_reason |
string | Reason provided by reviewer for declining. |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
batch |
string (uri) | |
proposal |
string (uri) | |
proposal_uuid |
string (uuid) | |
proposal_name |
string | |
proposal_slug |
string | |
status |
any | |
status_display |
string | |
affinity_score |
number (double) | Affinity score used for assignment (0-1). |
has_coi |
boolean | Whether COI was detected during pre-check. |
coi_count |
integer | Count of COI records blocking this assignment. |
responded_at |
string (date-time) | |
decline_reason |
string | Reason provided by reviewer for declining. |
review |
string (uri) | The Review record created when this assignment was accepted. |
review_uuid |
string (uuid) | |
reassign_count |
integer | Number of times this proposal has been reassigned. |
created |
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:
PatchedAssignmentItemRequest - API Source:
assignment_items_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 |
|---|---|---|---|
decline_reason |
string | Reason provided by reviewer for declining. |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
batch |
string (uri) | |
proposal |
string (uri) | |
proposal_uuid |
string (uuid) | |
proposal_name |
string | |
proposal_slug |
string | |
status |
any | |
status_display |
string | |
affinity_score |
number (double) | Affinity score used for assignment (0-1). |
has_coi |
boolean | Whether COI was detected during pre-check. |
coi_count |
integer | Count of COI records blocking this assignment. |
responded_at |
string (date-time) | |
decline_reason |
string | Reason provided by reviewer for declining. |
review |
string (uri) | The Review record created when this assignment was accepted. |
review_uuid |
string (uuid) | |
reassign_count |
integer | Number of times this proposal has been reassigned. |
created |
string (date-time) |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
assignment_items_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
Suggest alternative reviewers for a declined assignment
Suggest alternative reviewers for a declined assignment.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
assignment_items_suggest_alternatives_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
suggestions |
array of objects | List of alternative reviewers with affinity scores |
Accept this assignment item. Creates a Review record
Accept this assignment item. Creates a Review record.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
assignment_items_accept
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
detail |
string | |
review_uuid |
string (uuid) | UUID of created review (only on accept) |
Decline this assignment item
Decline this assignment item.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
AssignmentItemDeclineRequest - API Source:
assignment_items_decline
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
reason |
string | Reason for declining this assignment |
200 -
| Field | Type | Description |
|---|---|---|
detail |
string | |
review_uuid |
string (uuid) | UUID of created review (only on accept) |
Reassign this item to a different reviewer
Reassign this item to a different reviewer.
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:
ReassignItemRequest - API Source:
assignment_items_reassign
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 | Description |
|---|---|---|---|
reviewer_pool_entry_uuid |
string (uuid) | ✓ | UUID of the pool entry for the new reviewer |
manager_notes |
string | Notes to include in the reassignment notification |
200 -
| Field | Type |
|---|---|
detail |
string |
new_item_uuid |
string (uuid) |
new_batch_uuid |
string (uuid) |