GET api/eBay/Categories?idSeller={idSeller}&marketplace={marketplace}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| idSeller | string |
Required |
|
| marketplace | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Category| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| Marketplace | string |
None. |
|
| Name | string |
None. |
|
| Level | string |
None. |
|
| ParentID | string |
None. |
|
| BestOfferEnabled | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "sample string 1",
"Marketplace": "sample string 2",
"Name": "sample string 3",
"Level": "sample string 4",
"ParentID": "sample string 5",
"BestOfferEnabled": true
},
{
"Id": "sample string 1",
"Marketplace": "sample string 2",
"Name": "sample string 3",
"Level": "sample string 4",
"ParentID": "sample string 5",
"BestOfferEnabled": true
}
]
application/xml, text/xml
Sample:
<ArrayOfCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AxEbayWebService.Models">
<Category>
<BestOfferEnabled>true</BestOfferEnabled>
<Id>sample string 1</Id>
<Level>sample string 4</Level>
<Marketplace>sample string 2</Marketplace>
<Name>sample string 3</Name>
<ParentID>sample string 5</ParentID>
</Category>
<Category>
<BestOfferEnabled>true</BestOfferEnabled>
<Id>sample string 1</Id>
<Level>sample string 4</Level>
<Marketplace>sample string 2</Marketplace>
<Name>sample string 3</Name>
<ParentID>sample string 5</ParentID>
</Category>
</ArrayOfCategory>