PUT api/ProductCatalogs/{Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
Required |
Body Parameters
ProductCatalogData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Identifier | string |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| CatalogId | globally unique identifier |
None. |
|
| Updated | date |
None. |
|
| IsDeleted | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "6a94fca7-39af-41eb-be8f-49fad162b41e",
"Identifier": "sample string 1",
"ProductId": "08873de6-592e-47b3-933d-a11bb13311eb",
"CatalogId": "6eab40f3-6104-4afb-b574-02051727d3fc",
"Updated": "2025-12-15T23:41:37.1866607-05:00",
"IsDeleted": 1
}
application/xml, text/xml
Sample:
<ProductCatalogData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <CatalogId>6eab40f3-6104-4afb-b574-02051727d3fc</CatalogId> <Id>6a94fca7-39af-41eb-be8f-49fad162b41e</Id> <Identifier>sample string 1</Identifier> <IsDeleted>1</IsDeleted> <ProductId>08873de6-592e-47b3-933d-a11bb13311eb</ProductId> <Updated>2025-12-15T23:41:37.1866607-05:00</Updated> </ProductCatalogData>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |