POST Catalog/Attribute
GetAttributes with same parentID
Request Information
URI Parameters
None.
Body Parameters
GetAttributeRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"Lang": "sample string 2",
"StoreID": 3
}
application/xml, text/xml
Sample:
<GetAttributeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Catalog"> <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 2</Lang> <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">3</StoreID> <ID>1</ID> </GetAttributeRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Attribute| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Created | date |
None. |
|
| Modified | date |
None. |
|
| Disabled | date |
None. |
|
| ParentID | integer |
None. |
|
| Name | string |
None. |
|
| Value |
The value related to this attribute. E.g. color black has value : 0x00000 |
string |
None. |
| SortOrder | integer |
None. |
|
| ExternalID |
Identifies ID in external db |
string |
None. |
| ImportedModel |
Identifies model in imported db |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"Created": "2025-12-06T09:15:24.6989858+01:00",
"Modified": "2025-12-06T09:15:24.6989858+01:00",
"Disabled": "2025-12-06T09:15:24.6989858+01:00",
"ParentID": 1,
"Name": "sample string 4",
"Value": "sample string 5",
"SortOrder": 6,
"ExternalID": "sample string 7",
"ImportedModel": "sample string 8"
}
application/xml, text/xml
Sample:
<Attribute xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Catalog"> <Created>2025-12-06T09:15:24.6989858+01:00</Created> <Disabled>2025-12-06T09:15:24.6989858+01:00</Disabled> <ExternalID>sample string 7</ExternalID> <ID>1</ID> <ImportedModel>sample string 8</ImportedModel> <Modified>2025-12-06T09:15:24.6989858+01:00</Modified> <Name>sample string 4</Name> <ParentID>1</ParentID> <SortOrder>6</SortOrder> <Value>sample string 5</Value> </Attribute>