Project Permissions Reviews
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/project-permissions-reviews/ |
List Project Permissions Reviews |
| GET | /api/project-permissions-reviews/{uuid}/ |
Retrieve |
| Other Actions | ||
| POST | /api/project-permissions-reviews/{uuid}/close/ |
Close project permission review |
Core CRUD
List Project Permissions Reviews
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
project_permissions_reviews_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
closed |
string (date-time) | |
is_pending |
boolean | Is pending |
o |
array | Ordering |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
project_uuid |
string (uuid) | Project UUID |
reviewer_uuid |
string (uuid) | Reviewer UUID |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
url |
string (uri) |
uuid |
string (uuid) |
reviewer_full_name |
string |
reviewer_uuid |
string (uuid) |
is_pending |
boolean |
created |
string (date-time) |
closed |
string (date-time) |
project_uuid |
string (uuid) |
project_name |
string |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
project_permissions_reviews_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) |
reviewer_full_name |
string |
reviewer_uuid |
string (uuid) |
is_pending |
boolean |
created |
string (date-time) |
closed |
string (date-time) |
project_uuid |
string (uuid) |
project_name |
string |
Other Actions
Close project permission review
Complete project permission review.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
project_permissions_reviews_close
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 - No response body