Customer Permissions Reviews
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/customer-permissions-reviews/ |
List Customer Permissions Reviews |
| GET | /api/customer-permissions-reviews/{uuid}/ |
Retrieve |
| Other Actions | ||
| POST | /api/customer-permissions-reviews/{uuid}/close/ |
Close customer permission review |
Core CRUD
List Customer Permissions Reviews
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
customer_permissions_reviews_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
closed |
string (date-time) | |
customer_uuid |
string (uuid) | Customer UUID |
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. |
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) |
customer_uuid |
string (uuid) |
customer_name |
string |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
customer_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) |
customer_uuid |
string (uuid) |
customer_name |
string |
Other Actions
Close customer permission review
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
customer_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