PUT api/Catalogs/{Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
Required |
Body Parameters
CatalogData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Identifier | string |
None. |
|
| Name | string |
None. |
|
| Updated | date |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| TerritoryId | globally unique identifier |
None. |
|
| Status | integer |
None. |
|
| IsDefault | integer |
None. |
|
| IsDeleted | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "1d2e33f7-de6c-45ba-8cbb-4a281fe09196",
"Identifier": "sample string 1",
"Name": "sample string 2",
"Updated": "2025-12-15T23:39:31.8895652-05:00",
"CustomerId": "905be762-2b77-44cd-b732-567dc4dba9ea",
"TerritoryId": "12d04411-584f-45dd-bef3-b13819f0b0c3",
"Status": 6,
"IsDefault": 1,
"IsDeleted": 1
}
application/xml, text/xml
Sample:
<CatalogData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <CustomerId>905be762-2b77-44cd-b732-567dc4dba9ea</CustomerId> <Id>1d2e33f7-de6c-45ba-8cbb-4a281fe09196</Id> <Identifier>sample string 1</Identifier> <IsDefault>1</IsDefault> <IsDeleted>1</IsDeleted> <Name>sample string 2</Name> <Status>6</Status> <TerritoryId>12d04411-584f-45dd-bef3-b13819f0b0c3</TerritoryId> <Updated>2025-12-15T23:39:31.8895652-05:00</Updated> </CatalogData>
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. |