Customer Role Concealments
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/customer-role-concealments/ |
List Customer Role Concealments |
| GET | /api/customer-role-concealments/{uuid}/ |
Retrieve |
| POST | /api/customer-role-concealments/ |
Create |
| DELETE | /api/customer-role-concealments/{uuid}/ |
Delete |
List Customer Role Concealments
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
customer_role_concealments_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
role_uuid |
string (uuid) | Role UUID |
scope_uuid |
string (uuid) | Customer (scope) UUID |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
uuid |
string (uuid) |
role |
string (uuid) |
role_name |
string |
customer_uuid |
string |
customer_name |
string |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
customer_role_concealments_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
role |
string (uuid) |
role_name |
string |
customer_uuid |
string |
customer_name |
string |
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:
CustomerRoleConcealmentRequest - API Source:
customer_role_concealments_create
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
| Field | Type | Required |
|---|---|---|
role |
string (uuid) | ✓ |
customer |
string (uuid) | ✓ |
201 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
role |
string (uuid) |
role_name |
string |
customer_uuid |
string |
customer_name |
string |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
customer_role_concealments_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body