GET api/WebApiOdata/GetAllProductOptionSet?providerId={providerId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| providerId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ProductOptionSet| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| ProviderID | integer |
None. |
|
| ProductOptionIDs | string |
None. |
|
| Status | boolean |
None. |
|
| CreatedBy | integer |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedBy | integer |
None. |
|
| ModifiedDate | date |
None. |
|
| OptionsCount | integer |
None. |
|
| Id | integer |
None. |
Response Formats
application/json, text/json, text/html
Sample:
[
{
"Name": "sample string 1",
"ProviderID": 2,
"ProductOptionIDs": "sample string 3",
"Status": true,
"CreatedBy": 5,
"CreatedDate": "2/6/2026",
"ModifiedBy": 1,
"ModifiedDate": "2/6/2026",
"OptionsCount": 7,
"Id": 8
},
{
"Name": "sample string 1",
"ProviderID": 2,
"ProductOptionIDs": "sample string 3",
"Status": true,
"CreatedBy": 5,
"CreatedDate": "2/6/2026",
"ModifiedBy": 1,
"ModifiedDate": "2/6/2026",
"OptionsCount": 7,
"Id": 8
}
]
application/xml, text/xml
Sample:
<ArrayOfProductOptionSet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SellersCommerce.Entities.Products">
<ProductOptionSet>
<_x003C_Id_x003E_k__BackingField xmlns="http://schemas.datacontract.org/2004/07/SellersCommerce.Entities">8</_x003C_Id_x003E_k__BackingField>
<CreatedBy>5</CreatedBy>
<CreatedDate>2026-02-06T02:34:50.464436+00:00</CreatedDate>
<ModifiedBy>1</ModifiedBy>
<ModifiedDate>2026-02-06T02:34:50.464436+00:00</ModifiedDate>
<Name>sample string 1</Name>
<OptionsCount>7</OptionsCount>
<ProductOptionIDs>sample string 3</ProductOptionIDs>
<ProviderID>2</ProviderID>
<Status>true</Status>
</ProductOptionSet>
<ProductOptionSet>
<_x003C_Id_x003E_k__BackingField xmlns="http://schemas.datacontract.org/2004/07/SellersCommerce.Entities">8</_x003C_Id_x003E_k__BackingField>
<CreatedBy>5</CreatedBy>
<CreatedDate>2026-02-06T02:34:50.464436+00:00</CreatedDate>
<ModifiedBy>1</ModifiedBy>
<ModifiedDate>2026-02-06T02:34:50.464436+00:00</ModifiedDate>
<Name>sample string 1</Name>
<OptionsCount>7</OptionsCount>
<ProductOptionIDs>sample string 3</ProductOptionIDs>
<ProviderID>2</ProviderID>
<Status>true</Status>
</ProductOptionSet>
</ArrayOfProductOptionSet>