Marketplace Offering Roles
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/marketplace-offering-roles/ |
List Marketplace Offering Roles |
| GET | /api/marketplace-offering-roles/{uuid}/ |
Retrieve |
| POST | /api/marketplace-offering-roles/ |
Create |
| PUT | /api/marketplace-offering-roles/{uuid}/ |
Update |
| PATCH | /api/marketplace-offering-roles/{uuid}/ |
Partial Update |
| DELETE | /api/marketplace-offering-roles/{uuid}/ |
Delete |
List Marketplace Offering Roles
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
marketplace_offering_roles_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
content_type |
string | |
name |
string | |
offering_uuid |
string | |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
uuid |
string (uuid) |
name |
string |
description |
string |
content_type |
string |
offering_uuid |
string |
offering_name |
string |
is_active |
boolean |
permissions |
array of strings |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
marketplace_offering_roles_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) |
name |
string |
description |
string |
content_type |
string |
offering_uuid |
string |
offering_name |
string |
is_active |
boolean |
permissions |
array of strings |
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:
OfferingRoleRequest - API Source:
marketplace_offering_roles_create
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Field | Type | Required | Description |
|---|---|---|---|
name |
string | ✓ | |
description |
string | ||
content_type_input |
any | Scope on create: 'resource' or 'resource_project'. Constraints: write-only |
|
offering |
string (uuid) | Offering UUID — pin role to this single offering. Constraints: write-only |
201 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
name |
string |
description |
string |
content_type |
string |
offering_uuid |
string |
offering_name |
string |
is_active |
boolean |
permissions |
array of strings |
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:
OfferingRoleRequest - API Source:
marketplace_offering_roles_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 | Description |
|---|---|---|---|
name |
string | ✓ | |
description |
string | ||
content_type_input |
any | Scope on create: 'resource' or 'resource_project'. Constraints: write-only |
|
offering |
string (uuid) | Offering UUID — pin role to this single offering. Constraints: write-only |
200 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
name |
string |
description |
string |
content_type |
string |
offering_uuid |
string |
offering_name |
string |
is_active |
boolean |
permissions |
array of strings |
Partial Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedOfferingRoleRequest - API Source:
marketplace_offering_roles_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 |
|---|---|---|---|
name |
string | ||
description |
string | ||
content_type_input |
any | Scope on create: 'resource' or 'resource_project'. Constraints: write-only |
|
offering |
string (uuid) | Offering UUID — pin role to this single offering. Constraints: write-only |
200 -
| Field | Type |
|---|---|
uuid |
string (uuid) |
name |
string |
description |
string |
content_type |
string |
offering_uuid |
string |
offering_name |
string |
is_active |
boolean |
permissions |
array of strings |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
marketplace_offering_roles_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body