POST api/integration/CreateBulkListing?userId={userId}&apiKey={apiKey}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | integer |
Required |
|
| apiKey | globally unique identifier |
Required |
Body Parameters
Collection of CreateListingRQ| Name | Description | Type | Additional information |
|---|---|---|---|
| UserProductId | integer |
None. |
|
| NewSiteProductName | string |
None. |
|
| Description | string |
None. |
|
| BarCode | string |
None. |
|
| PostMatureDate | date |
None. |
|
| IsFeaturedProduct | boolean |
None. |
|
| IsNoPostMatureDate | boolean |
None. |
|
| Stock | integer |
None. |
|
| QuantityLimit | integer |
None. |
|
| Psf | string |
None. |
|
| UnitPrice | string |
None. |
|
| UserId | integer |
None. |
|
| IpAddress | string |
None. |
|
| Source | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"UserProductId": 1,
"NewSiteProductName": "sample string 2",
"Description": "sample string 3",
"BarCode": "sample string 4",
"PostMatureDate": "2025-10-27T19:03:43.9597247+03:00",
"IsFeaturedProduct": true,
"IsNoPostMatureDate": true,
"Stock": 7,
"QuantityLimit": 1,
"Psf": "sample string 8",
"UnitPrice": "sample string 9",
"UserId": 10,
"IpAddress": "sample string 11",
"Source": "sample string 12"
},
{
"UserProductId": 1,
"NewSiteProductName": "sample string 2",
"Description": "sample string 3",
"BarCode": "sample string 4",
"PostMatureDate": "2025-10-27T19:03:43.9597247+03:00",
"IsFeaturedProduct": true,
"IsNoPostMatureDate": true,
"Stock": 7,
"QuantityLimit": 1,
"Psf": "sample string 8",
"UnitPrice": "sample string 9",
"UserId": 10,
"IpAddress": "sample string 11",
"Source": "sample string 12"
}
]
application/xml, text/xml
Sample:
<ArrayOfCreateListingRQ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EczaneApp.Model.API">
<CreateListingRQ>
<IpAddress xmlns="http://schemas.datacontract.org/2004/07/EczaneApp.Model">sample string 11</IpAddress>
<Source xmlns="http://schemas.datacontract.org/2004/07/EczaneApp.Model">sample string 12</Source>
<BarCode>sample string 4</BarCode>
<Description>sample string 3</Description>
<IsFeaturedProduct>true</IsFeaturedProduct>
<IsNoPostMatureDate>true</IsNoPostMatureDate>
<NewSiteProductName>sample string 2</NewSiteProductName>
<PostMatureDate>2025-10-27T19:03:43.9597247+03:00</PostMatureDate>
<Psf>sample string 8</Psf>
<QuantityLimit>1</QuantityLimit>
<Stock>7</Stock>
<UnitPrice>sample string 9</UnitPrice>
<UserId>10</UserId>
<UserProductId>1</UserProductId>
</CreateListingRQ>
<CreateListingRQ>
<IpAddress xmlns="http://schemas.datacontract.org/2004/07/EczaneApp.Model">sample string 11</IpAddress>
<Source xmlns="http://schemas.datacontract.org/2004/07/EczaneApp.Model">sample string 12</Source>
<BarCode>sample string 4</BarCode>
<Description>sample string 3</Description>
<IsFeaturedProduct>true</IsFeaturedProduct>
<IsNoPostMatureDate>true</IsNoPostMatureDate>
<NewSiteProductName>sample string 2</NewSiteProductName>
<PostMatureDate>2025-10-27T19:03:43.9597247+03:00</PostMatureDate>
<Psf>sample string 8</Psf>
<QuantityLimit>1</QuantityLimit>
<Stock>7</Stock>
<UnitPrice>sample string 9</UnitPrice>
<UserId>10</UserId>
<UserProductId>1</UserProductId>
</CreateListingRQ>
</ArrayOfCreateListingRQ>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ServiceResponseOfListOfCreateListingRS| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | Collection of CreateListingRS |
None. |
|
| Success | boolean |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": [
{
"NotificationMessage": "sample string 1",
"Barcode": "sample string 2",
"Title": "sample string 3",
"NewRecordId": 4,
"SiteProductId": 5,
"Success": true
},
{
"NotificationMessage": "sample string 1",
"Barcode": "sample string 2",
"Title": "sample string 3",
"NewRecordId": 4,
"SiteProductId": 5,
"Success": true
}
],
"Success": true,
"ErrorMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<ServiceResponseOfArrayOfCreateListingRS0Iqqofk2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EczaneApp.Model">
<ErrorMessage>sample string 2</ErrorMessage>
<Success>true</Success>
<Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/EczaneApp.Model.API">
<d2p1:CreateListingRS>
<IsSuccess>true</IsSuccess>
<Message>sample string 8</Message>
<Success>true</Success>
<NewRecordId>4</NewRecordId>
<SiteProductId>5</SiteProductId>
<d2p1:Barcode>sample string 2</d2p1:Barcode>
<d2p1:NotificationMessage>sample string 1</d2p1:NotificationMessage>
<d2p1:Title>sample string 3</d2p1:Title>
</d2p1:CreateListingRS>
<d2p1:CreateListingRS>
<IsSuccess>true</IsSuccess>
<Message>sample string 8</Message>
<Success>true</Success>
<NewRecordId>4</NewRecordId>
<SiteProductId>5</SiteProductId>
<d2p1:Barcode>sample string 2</d2p1:Barcode>
<d2p1:NotificationMessage>sample string 1</d2p1:NotificationMessage>
<d2p1:Title>sample string 3</d2p1:Title>
</d2p1:CreateListingRS>
</Result>
</ServiceResponseOfArrayOfCreateListingRS0Iqqofk2>