Marketplace Article Code Update
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| POST | /api/marketplace-article-code-update/apply/ |
Apply article code replacements |
| POST | /api/marketplace-article-code-update/preview/ |
Preview article code replacements |
Apply article code replacements
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:
ArticleCodeUpdateApplyRequest - API Source:
marketplace_article_code_update_apply
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
| Field | Type | Required | Description |
|---|---|---|---|
search |
string | ✓ | Substring to search for in article codes. |
replace |
string | Replacement string. Constraints: default: `` |
|
offering_category_uuid |
string (uuid) | Filter by offering category UUID. | |
offering_customer_uuid |
string (uuid) | Filter by service provider (customer) UUID. | |
offering_state |
any | Filter by offering state. | |
offering_name |
string | Filter by offering name (case-insensitive substring match). | |
component_uuids |
array of string (uuid)s | ✓ | UUIDs of components to update (from preview results). |
200 -
| Field | Type |
|---|---|
updated_count |
integer |
Preview article code replacements
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:
ArticleCodeUpdatePreviewRequest - API Source:
marketplace_article_code_update_preview
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Description |
|---|---|---|
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
| Field | Type | Required | Description |
|---|---|---|---|
search |
string | ✓ | Substring to search for in article codes. |
replace |
string | Replacement string. Constraints: default: `` |
|
offering_category_uuid |
string (uuid) | Filter by offering category UUID. | |
offering_customer_uuid |
string (uuid) | Filter by service provider (customer) UUID. | |
offering_state |
any | Filter by offering state. | |
offering_name |
string | Filter by offering name (case-insensitive substring match). |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
component_uuid |
string (uuid) |
component_type |
string |
component_name |
string |
offering_uuid |
string (uuid) |
offering_name |
string |
offering_customer_name |
string |
old_article_code |
string |
new_article_code |
string |