Read Channel Products

Retrieves the details of a Channel products object that has been previously created.

Parameters

Path Params
yourCompany:string
The Company name need to passed in the base URL.For eg. if you enter xyzcompany name, the url https://{yourCompany}.agiliron.net/agiliron/api-40.php/Channels-Products will change to https://xyzcompany.agiliron.net/agiliron/api-40.php/Channels-Products
channel_name:string
An existing Channel Name for which the products are needs to be fetched should pass as an parameter.
Query Params
showImageData:string
In this parameter yes or no value needs to be passed respectively to fetch image data or to skip image data in response.for eg. showImageData=No (By default value for showImageData will be Yes)

1) To fetch Channel Products with Channel equal to StoreAbc and without image data, the following url must be used

https://xyzcompany.agiliron.net/agiliron/api-40/Channels-Products/StoreAbc&key=xyzkey&showImageData=No
page:int
Page number needs to be passed in this variable ,to paginate the response.
pageSize:int
In this parameter pageSize number needs to be provided to fetch related page details.
Header Params
Accept:string
Response header need to be passed for eg. application/json or application/xml.
Query Auth
key:string
API key needs to be passed in this variable.The option to enter API key will appear when you click on Try it button.This will be the first option in AUTHENTICATION block.Default is SET to 0.
Header Auth
apiKey:string
Dedicated API key needs to be passed in this variable via header.The option to enter API key will appear when you click on Try it button.This will be the second option in AUTHENTICATION block.Default is SET to 0.

Sample Code

Product Types:

  • Standard
  • Matrix
  • Assembly
  • Kit
  • Lot
  • Proxy
  • Serialised
  • Service
{
	"Products": {
		"Product": [{
			"ProductName": "Test New Product",
			"ProductCode": "TNP",
			"Barcode": "2654986",
			"ProductCategory": "CARVINGS",
			"PreferredVendor": "Vendor1",
			"Manufacturer": "Advance",
			"ProductType": "standard",
			"ProductImages": "image1.jpg,image2.jpeg",
			"ProductImagesBase64": {
				"ProductImageBase64": [{
						"FileName": "image1.jpg",
						"ImageData": "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
					},
					{
						"FileName": "image2.jpeg",
						"ImageData": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII="
					}
				]
			},
			"SeoTitle": "Test Title",
			"SeoDescription": "The SEO Description Goes here.",
			"SeoKeywords": "The Keywords Goes here.",
			"Description": "The Description Goes here.",
			"ManufacturerPartNo": "895",
			"Discontinued": "NO",
			"Website": "www.abc.com",
			"ProductStockManager": "admin",
			"SendStockNotification": "NO",
			"AutoCreatePOAtReorderLevel": "NO",
			"Asin": "",
			"EbayItemId": "",
			"Volume": "10.0000",
			"Length": "10.0000",
			"Width": "10.0000",
			"Height": "10.0000",
			"WeightMajor": "10.0000",
			"WeightMinor": "10.0000",
			"ShippingCost": "10.00",
			"IncomeAccount": "Sales",
			"CogsAccount": "Cost of Goods Sold",
			"AssetAccount": "Uncategorized Asset",
			"ExpenseAccount": "Uncategorized Expense",
			"TaxCategory": "Taxable",
			"QuickbooksItem": "Hours",
			"QtyInStock": "0",
			"QtyOnSO": "0",
			"QtyOnPO": "0",
			"CreatedTime": "01-24-2020 05:19:56",
			"CreatedTimeUTC": "01-24-2020 15:01:35",
			"ModifiedTime": "01-24-2020 05:19:56",
			"ModifiedTimeUTC": "01-24-2020 15:05:56",
			"ProductCustomFields": {
				"CustomField": [{
						"Name": "CustomFied1",
						"Value": "Custom info 1"
					},
					{
						"Name": "CustomFied2",
						"Value": "Custom info 2"
					}
				]
			}
		}],
		"TotalRecords": "1",
		"CurrentPage": "1",
		"TotalPages": "1",
		"PageSize": "50"
	}
}
<Products>
    <Product>
        <ProductName>Test New Product</ProductName>
        <ProductCode>TNP</ProductCode>
        <Barcode>2654986</Barcode>
        <ProductCategory>CARVINGS</ProductCategory>
        <PreferredVendor>Vendor1</PreferredVendor>
        <Manufacturer>Advance</Manufacturer>
        <ProductType>standard</ProductType>
        <ProductImages>image1.jpg,image2.jpeg</ProductImages>
        <ProductImagesBase64>
           <ProductImageBase64>
              <FileName>image1.jpg</FileName>
              <ImageData>R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==</ImageData>
           </ProductImageBase64>
           <ProductImageBase64>
              <FileName>image2.jpeg</FileName>
              <ImageData>iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII=</ImageData>
           </ProductImageBase64>
        </ProductImagesBase64>
        <SeoTitle>Test Title</SeoTitle>
        <SeoDescription>The SEO Description Goes here.</SeoDescription>
        <SeoKeywords>The Keywords Goes here.</SeoKeywords>
        <Description>The Description Goes here.</Description>
        <ManufacturerPartNo>895</ManufacturerPartNo>
        <Discontinued>NO</Discontinued>
        <Website>www.abc.com</Website>
        <ProductStockManager>admin</ProductStockManager>
        <SendStockNotification>NO</SendStockNotification>
        <AutoCreatePOAtReorderLevel>NO</AutoCreatePOAtReorderLevel>
        <Asin></Asin>
        <EbayItemId></EbayItemId>
        <Volume>10.0000</Volume>
        <Length>10.0000</Length>
        <Width>10.0000</Width>
        <Height>10.0000</Height>
        <WeightMajor>10.0000</WeightMajor>
        <WeightMinor>10.0000</WeightMinor>
        <ShippingCost>10.00</ShippingCost>
        <IncomeAccount>Sales </IncomeAccount>
        <CogsAccount>Cost of Goods Sold </CogsAccount>
        <AssetAccount>Uncategorized Asset </AssetAccount>
        <ExpenseAccount>Uncategorized Expense </ExpenseAccount>
        <TaxCategory>Taxable</TaxCategory>
        <QuickbooksItem>Hours</QuickbooksItem>
        <QtyInStock>0</QtyInStock>
        <QtyOnSO>0</QtyOnSO>
        <QtyOnPO>0</QtyOnPO>
      	<CreatedTime>01-24-2020 05:19:56</CreatedTime>
      	<CreatedTimeUTC>01-24-2020 15:01:35</CreatedTimeUTC>
        <ModifiedTime>01-24-2020 05:19:56</ModifiedTime>
      	<ModifiedTimeUTC>01-24-2020 15:05:56</ModifiedTimeUTC>
        <ProductCustomFields>
            <CustomField>
                <Name>CustomFied1</Name>
                <Value>Custom info 1</Value>
            </CustomField>
            <CustomField>
                <Name>CustomFied2</Name>
                <Value>Custom info 2</Value>
            </CustomField>
        </ProductCustomFields>
    </Product>
  	<TotalRecords>1</TotalRecords>
    <CurrentPage>1</CurrentPage>
    <TotalPages>1</TotalPages>
    <PageSize>50</PageSize>
</Products>
{
	"Products": {
		"Product": [{
			"ProductName": "Test New Product",
			"ProductCode": "TNP",
			"Barcode": "2654986",
			"ProductCategory": "CARVINGS",
			"PreferredVendor": "Vendor1",
			"Manufacturer": "Advance",
			"ProductType": "matrix",
			"ProductMatrixItems": {
				"ProductMatrixItem": [{
						"ProductMatrixName": "Blue:S",
						"ProductSkewId": "",
						"ProductMatrixSKUCode": "43234325",
						"ProductMatrixBarcode": "76832",
						"ProductMatrixLocation": "OAK",
						"ProductMatrixQuantity": "10",
						"ProductMatrixReorderLevel": "5",
						"ProductMatrixPreferredStockLevel": "5",
						"ProductMatrixUnitCost": "10.00",
						"ProductMatrixASIN": "",
						"ProductMatrixFNSKU": "",
						"ProductMatrixBinLocation": "BinLocation1",
						"ProductMatrixDefinitions": {
							"ProductMatrixDefinition": [{
									"Name": "Color",
									"Value": "Blue"
								},
								{
									"Name": "Size",
									"Value": "S"
								},
								{
									"Name": "Condition",
									"Value": "New"
								},
								{
									"Name": "Capacity",
									"Value": "1GB"
								}
							]
						},
						"ProductMatrixCustomFields": {
							"CustomField": [{
									"Name": "MatrixCf1",
									"Value": "Value1"
								},
								{
									"Name": "MatrixCf2",
									"Value": "Value2"
								}
							]
						}
					},
					{
						"ProductMatrixName": "Blue:M",
						"ProductSkewId": "",
						"ProductMatrixSKUCode": "343242342",
						"ProductMatrixBarcode": "65423",
						"ProductMatrixLocation": "PDX",
						"ProductMatrixQuantity": "20",
						"ProductMatrixReorderLevel": "10",
						"ProductMatrixPreferredStockLevel": "10",
						"ProductMatrixUnitCost": "20.00000",
						"ProductMatrixASIN": "",
						"ProductMatrixFNSKU": "",
						"ProductMatrixBinLocation": "BinLocation2",
						"ProductMatrixDefinitions": {
							"ProductMatrixDefinition": [{
									"Name": "Color",
									"Value": "Blue"
								},
								{
									"Name": "Size",
									"Value": "M"
								},
								{
									"Name": "Condition",
									"Value": ""
								},
								{
									"Name": "Capacity",
									"Value": ""
								}
							]
						},
						"ProductMatrixCustomFields": {
							"CustomField": [{
									"Name": "MatrixCf1",
									"Value": "Value1"
								},
								{
									"Name": "MatrixCf2",
									"Value": "Value2"
								}
							]
						}
					}
				]
			},
			"ProductImages": "image1.jpg,image2.jpeg",
			"ProductImagesBase64": {
				"ProductImageBase64": [{
						"FileName": "image1.jpg",
						"ImageData": "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
					},
					{
						"FileName": "image2.jpeg",
						"ImageData": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII="
					}
				]
			},
			"SeoTitle": "Test Title",
			"SeoDescription": "The SEO Description Goes here.",
			"SeoKeywords": "The Keywords Goes here.",
			"Description": "The Description Goes here.",
			"ManufacturerPartNo": "895",
			"Discontinued": "NO",
			"Website": "www.abc.com",
			"ProductStockManager": "admin",
			"SendStockNotification": "NO",
			"AutoCreatePOAtReorderLevel": "NO",
			"Asin": "",
			"EbayItemId": "",
			"Volume": "10.0000",
			"Length": "10.0000",
			"Width": "10.0000",
			"Height": "10.0000",
			"WeightMajor": "10.0000",
			"WeightMinor": "10.0000",
			"ShippingCost": "10.00",
			"IncomeAccount": "Sales",
			"CogsAccount": "Cost of Goods Sold",
			"AssetAccount": "Uncategorized Asset",
			"ExpenseAccount": "Uncategorized Expense",
			"TaxCategory": "Taxable",
			"QuickbooksItem": "Hours",
			"QtyInStock": "0",
			"QtyOnSO": "0",
			"QtyOnPO": "0",
			"CreatedTime": "01-24-2020 05:19:56",
			"CreatedTimeUTC": "01-24-2020 15:01:35",
			"ModifiedTime": "01-24-2020 05:19:56",
			"ModifiedTimeUTC": "01-24-2020 15:05:56",
			"ProductCustomFields": {
				"CustomField": [{
						"Name": "CustomFied1",
						"Value": "Custom info 1"
					},
					{
						"Name": "CustomFied2",
						"Value": "Custom info 2"
					}
				]
			}
		}],
		"TotalRecords": "1",
		"CurrentPage": "1",
		"TotalPages": "1",
		"PageSize": "50"
	}
}
<Products>
    <Product>
        <ProductName>Test New Product</ProductName>
        <ProductCode>TNP</ProductCode>
        <Barcode>2654986</Barcode>
        <ProductCategory>CARVINGS</ProductCategory>
        <PreferredVendor>Vendor1</PreferredVendor>
        <Manufacturer>Advance</Manufacturer>
        <ProductType>matrix</ProductType>
        <ProductMatrixItems>
            <ProductMatrixItem>
                <ProductMatrixName>Blue:S</ProductMatrixName>
                <ProductSkewId></ProductSkewId>
                <ProductMatrixSKUCode>43234325</ProductMatrixSKUCode>
                <ProductMatrixBarcode>76832</ProductMatrixBarcode>
                <ProductMatrixLocation>OAK</ProductMatrixLocation>
                <ProductMatrixQuantity>10</ProductMatrixQuantity>
                <ProductMatrixReorderLevel>5</ProductMatrixReorderLevel>
                <ProductMatrixPreferredStockLevel>5</ProductMatrixPreferredStockLevel>
                <ProductMatrixUnitCost>10.00</ProductMatrixUnitCost>
                <ProductMatrixASIN></ProductMatrixASIN>
                <ProductMatrixFNSKU></ProductMatrixFNSKU>
                <ProductMatrixBinLocation>BinLocation1</ProductMatrixBinLocation>
                <ProductMatrixDefinitions>
                    <ProductMatrixDefinition>
                        <Name>Color</Name>
                        <Value>Blue</Value>
                    </ProductMatrixDefinition>
                    <ProductMatrixDefinition>
                        <Name>Size</Name>
                        <Value>S</Value>
                    </ProductMatrixDefinition>
                    <ProductMatrixDefinition>
                        <Name>Condition</Name>
                        <Value>New</Value>
                    </ProductMatrixDefinition>
                    <ProductMatrixDefinition>
                        <Name>Capacity</Name>
                        <Value>1GB</Value>
                    </ProductMatrixDefinition>
                </ProductMatrixDefinitions>
                                <ProductMatrixCustomFields>
                    <CustomField>
                        <Name>MatrixCf1</Name>
                        <Value>Value1</Value>
                    </CustomField>
                                        <CustomField>
                        <Name>MatrixCf2</Name>
                        <Value>Value2</Value>
                    </CustomField>
                </ProductMatrixCustomFields>
            </ProductMatrixItem>
            <ProductMatrixItem>
                <ProductMatrixName>Blue:M</ProductMatrixName>
                <ProductSkewId></ProductSkewId>
                <ProductMatrixSKUCode>343242342</ProductMatrixSKUCode>
                <ProductMatrixBarcode>65423</ProductMatrixBarcode>
                <ProductMatrixLocation>PDX</ProductMatrixLocation>
                <ProductMatrixQuantity>20</ProductMatrixQuantity>
                <ProductMatrixReorderLevel>10</ProductMatrixReorderLevel>
                <ProductMatrixPreferredStockLevel>10</ProductMatrixPreferredStockLevel>
                <ProductMatrixUnitCost>20.00000</ProductMatrixUnitCost>
                <ProductMatrixASIN></ProductMatrixASIN>
                <ProductMatrixFNSKU></ProductMatrixFNSKU>
                <ProductMatrixBinLocation>BinLocation2</ProductMatrixBinLocation>
                <ProductMatrixDefinitions>
                    <ProductMatrixDefinition>
                        <Name>Color</Name>
                        <Value>Blue</Value>
                    </ProductMatrixDefinition>
                    <ProductMatrixDefinition>
                        <Name>Size</Name>
                        <Value>M</Value>
                    </ProductMatrixDefinition>
                    <ProductMatrixDefinition>
                        <Name>Condition</Name>
                        <Value></Value>
                    </ProductMatrixDefinition>
                    <ProductMatrixDefinition>
                        <Name>Capacity</Name>
                        <Value></Value>
                    </ProductMatrixDefinition>
                </ProductMatrixDefinitions>
                                <ProductMatrixCustomFields>
                    <CustomField>
                        <Name>MatrixCf1</Name>
                        <Value>Value1</Value>
                    </CustomField>
                                        <CustomField>
                        <Name>MatrixCf2</Name>
                        <Value>Value2</Value>
                    </CustomField>
                </ProductMatrixCustomFields>
            </ProductMatrixItem>
        </ProductMatrixItems>
        <ProductImages>image1.jpg,image2.jpeg</ProductImages>
        <ProductImagesBase64>
           <ProductImageBase64>
              <FileName>image1.jpg</FileName>
              <ImageData>R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==</ImageData>
           </ProductImageBase64>
           <ProductImageBase64>
              <FileName>image2.jpeg</FileName>
              <ImageData>iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII=</ImageData>
           </ProductImageBase64>
        </ProductImagesBase64>
        <SeoTitle>Test Title</SeoTitle>
        <SeoDescription>The SEO Description Goes here.</SeoDescription>
        <SeoKeywords>The Keywords Goes here.</SeoKeywords>
        <Description>The Description Goes here.</Description>
        <ManufacturerPartNo>895</ManufacturerPartNo>
        <Discontinued>NO</Discontinued>
        <Website>www.abc.com</Website>
        <ProductStockManager>admin</ProductStockManager>
        <SendStockNotification>NO</SendStockNotification>
        <AutoCreatePOAtReorderLevel>NO</AutoCreatePOAtReorderLevel>
        <Asin></Asin>
        <EbayItemId></EbayItemId>
        <Volume>10.0000</Volume>
        <Length>10.0000</Length>
        <Width>10.0000</Width>
        <Height>10.0000</Height>
        <WeightMajor>10.0000</WeightMajor>
        <WeightMinor>10.0000</WeightMinor>
        <ShippingCost>10.00</ShippingCost>
        <IncomeAccount>Sales </IncomeAccount>
        <CogsAccount>Cost of Goods Sold </CogsAccount>
        <AssetAccount>Uncategorized Asset </AssetAccount>
        <ExpenseAccount>Uncategorized Expense </ExpenseAccount>
        <TaxCategory>Taxable</TaxCategory>
        <QuickbooksItem>Hours</QuickbooksItem>
        <QtyInStock>0</QtyInStock>
        <QtyOnSO>0</QtyOnSO>
        <QtyOnPO>0</QtyOnPO>
      	<CreatedTime>01-24-2020 05:19:56</CreatedTime>
      	<CreatedTimeUTC>01-24-2020 15:01:35</CreatedTimeUTC>
        <ModifiedTime>01-24-2020 05:19:56</ModifiedTime>
      	<ModifiedTimeUTC>01-24-2020 15:05:56</ModifiedTimeUTC>
        <ProductCustomFields>
            <CustomField>
                <Name>CustomFied1</Name>
                <Value>Custom info 1</Value>
            </CustomField>
            <CustomField>
                <Name>CustomFied2</Name>
                <Value>Custom info 2</Value>
            </CustomField>
        </ProductCustomFields>
    </Product>
  	<TotalRecords>1</TotalRecords>
    <CurrentPage>1</CurrentPage>
    <TotalPages>1</TotalPages>
    <PageSize>50</PageSize>
</Products>
{
	"Products": {
		"Product": [{
			"ProductName": "Test New Product",
			"ProductCode": "TNP",
			"Barcode": "2654986",
			"ProductCategory": "CARVINGS",
			"PreferredVendor": "Vendor1",
			"Manufacturer": "Advance",
			"ProductType": "assembly",
			"ProductComponents": {
				"ProductComponent": {
					"ProductComponentId": "61482",
					"ProductComponentCode": "Component1",
					"ProductComponentName": "Component 1",
					"ProductComponentQuantity": "1"
				}
			},
			"ProductImages": "image1.jpg,image2.jpeg",
			"ProductImagesBase64": {
				"ProductImageBase64": [{
						"FileName": "image1.jpg",
						"ImageData": "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
					},
					{
						"FileName": "image2.jpeg",
						"ImageData": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII="
					}
				]
			},
			"SeoTitle": "Test Title",
			"SeoDescription": "The SEO Description Goes here.",
			"SeoKeywords": "The Keywords Goes here.",
			"Description": "The Description Goes here.",
			"ManufacturerPartNo": "895",
			"Discontinued": "NO",
			"Website": "www.abc.com",
			"ProductStockManager": "admin",
			"SendStockNotification": "NO",
			"AutoCreatePOAtReorderLevel": "NO",
			"Asin": "",
			"EbayItemId": "",
			"Volume": "10.0000",
			"Length": "10.0000",
			"Width": "10.0000",
			"Height": "10.0000",
			"WeightMajor": "10.0000",
			"WeightMinor": "10.0000",
			"ShippingCost": "10.00",
			"IncomeAccount": "Sales",
			"CogsAccount": "Cost of Goods Sold",
			"AssetAccount": "Uncategorized Asset",
			"ExpenseAccount": "Uncategorized Expense",
			"TaxCategory": "Taxable",
			"QuickbooksItem": "Hours",
			"QtyInStock": "0",
			"QtyOnSO": "0",
			"QtyOnPO": "0",
			"CreatedTime": "01-24-2020 05:19:56",
			"CreatedTimeUTC": "01-24-2020 15:01:35",
			"ModifiedTime": "01-24-2020 05:19:56",
			"ModifiedTimeUTC": "01-24-2020 15:05:56",
			"ProductCustomFields": {
				"CustomField": [{
						"Name": "CustomFied1",
						"Value": "Custom info 1"
					},
					{
						"Name": "CustomFied2",
						"Value": "Custom info 2"
					}
				]
			}
		}],
		"TotalRecords": "1",
		"CurrentPage": "1",
		"TotalPages": "1",
		"PageSize": "50"
	}
}
<Products>
    <Product>
        <ProductName>Test New Product</ProductName>
        <ProductCode>TNP</ProductCode>
        <Barcode>2654986</Barcode>
        <ProductCategory>CARVINGS</ProductCategory>
        <PreferredVendor>Vendor1</PreferredVendor>
        <Manufacturer>Advance</Manufacturer>
        <ProductType>assembly</ProductType>
        <ProductComponents>
            <ProductComponent>
                <ProductComponentId>61482</ProductComponentId>
                <ProductComponentCode>Component1</ProductComponentCode>
                <ProductComponentName>Component 1</ProductComponentName>
                <ProductComponentQuantity>1</ProductComponentQuantity>
            </ProductComponent>
        </ProductComponents>
        <ProductImages>image1.jpg,image2.jpeg</ProductImages>
        <ProductImagesBase64>
           <ProductImageBase64>
              <FileName>image1.jpg</FileName>
              <ImageData>R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==</ImageData>
           </ProductImageBase64>
           <ProductImageBase64>
              <FileName>image2.jpeg</FileName>
              <ImageData>iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII=</ImageData>
           </ProductImageBase64>
        </ProductImagesBase64>
        <SeoTitle>Test Title</SeoTitle>
        <SeoDescription>The SEO Description Goes here.</SeoDescription>
        <SeoKeywords>The Keywords Goes here.</SeoKeywords>
        <Description>The Description Goes here.</Description>
        <ManufacturerPartNo>895</ManufacturerPartNo>
        <Discontinued>NO</Discontinued>
        <Website>www.abc.com</Website>
        <ProductStockManager>admin</ProductStockManager>
        <SendStockNotification>NO</SendStockNotification>
        <AutoCreatePOAtReorderLevel>NO</AutoCreatePOAtReorderLevel>
        <Asin></Asin>
        <EbayItemId></EbayItemId>
        <Volume>10.0000</Volume>
        <Length>10.0000</Length>
        <Width>10.0000</Width>
        <Height>10.0000</Height>
        <WeightMajor>10.0000</WeightMajor>
        <WeightMinor>10.0000</WeightMinor>
        <ShippingCost>10.00</ShippingCost>
        <IncomeAccount>Sales </IncomeAccount>
        <CogsAccount>Cost of Goods Sold </CogsAccount>
        <AssetAccount>Uncategorized Asset </AssetAccount>
        <ExpenseAccount>Uncategorized Expense </ExpenseAccount>
        <TaxCategory>Taxable</TaxCategory>
        <QuickbooksItem>Hours</QuickbooksItem>
        <QtyInStock>0</QtyInStock>
        <QtyOnSO>0</QtyOnSO>
        <QtyOnPO>0</QtyOnPO>
      	<CreatedTime>01-24-2020 05:19:56</CreatedTime>
      	<CreatedTimeUTC>01-24-2020 15:01:35</CreatedTimeUTC>
        <ModifiedTime>01-24-2020 05:19:56</ModifiedTime>
      	<ModifiedTimeUTC>01-24-2020 15:05:56</ModifiedTimeUTC>
        <ProductCustomFields>
            <CustomField>
                <Name>CustomFied1</Name>
                <Value>Custom info 1</Value>
            </CustomField>
            <CustomField>
                <Name>CustomFied2</Name>
                <Value>Custom info 2</Value>
            </CustomField>
        </ProductCustomFields>
    </Product>
  	<TotalRecords>1</TotalRecords>
    <CurrentPage>1</CurrentPage>
    <TotalPages>1</TotalPages>
    <PageSize>50</PageSize>
</Products>
{
	"Products": {
		"Product": [{
			"ProductName": "Test New Product",
			"ProductCode": "TNP",
			"Barcode": "2654986",
			"ProductCategory": "CARVINGS",
			"PreferredVendor": "Vendor1",
			"Manufacturer": "Advance",
			"ProductType": "kit",
			"ProductComponents": {
				"ProductComponent": {
					"ProductComponentId": "61482",
					"ProductComponentCode": "Component1",
					"ProductComponentName": "Component 1",
					"ProductComponentQuantity": "1"
				}
			},
			"ProductImages": "image1.jpg,image2.jpeg",
			"ProductImagesBase64": {
				"ProductImageBase64": [{
						"FileName": "image1.jpg",
						"ImageData": "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
					},
					{
						"FileName": "image2.jpeg",
						"ImageData": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII="
					}
				]
			},
			"SeoTitle": "Test Title",
			"SeoDescription": "The SEO Description Goes here.",
			"SeoKeywords": "The Keywords Goes here.",
			"Description": "The Description Goes here.",
			"ManufacturerPartNo": "895",
			"Discontinued": "NO",
			"Website": "www.abc.com",
			"ProductStockManager": "admin",
			"SendStockNotification": "NO",
			"AutoCreatePOAtReorderLevel": "NO",
			"Asin": "",
			"EbayItemId": "",
			"Volume": "10.0000",
			"Length": "10.0000",
			"Width": "10.0000",
			"Height": "10.0000",
			"WeightMajor": "10.0000",
			"WeightMinor": "10.0000",
			"ShippingCost": "10.00",
			"IncomeAccount": "Sales",
			"CogsAccount": "Cost of Goods Sold",
			"AssetAccount": "Uncategorized Asset",
			"ExpenseAccount": "Uncategorized Expense",
			"TaxCategory": "Taxable",
			"QuickbooksItem": "Hours",
			"QtyInStock": "0",
			"QtyOnSO": "0",
			"QtyOnPO": "0",
			"CreatedTime": "01-24-2020 05:19:56",
			"CreatedTimeUTC": "01-24-2020 15:01:35",
			"ModifiedTime": "01-24-2020 05:19:56",
			"ModifiedTimeUTC": "01-24-2020 15:05:56",
			"ProductCustomFields": {
				"CustomField": [{
						"Name": "CustomFied1",
						"Value": "Custom info 1"
					},
					{
						"Name": "CustomFied2",
						"Value": "Custom info 2"
					}
				]
			}
		}],
		"TotalRecords": "1",
		"CurrentPage": "1",
		"TotalPages": "1",
		"PageSize": "50"
	}
}
<Products>
    <Product>
        <ProductName>Test New Product</ProductName>
        <ProductCode>TNP</ProductCode>
        <Barcode>2654986</Barcode>
        <ProductCategory>CARVINGS</ProductCategory>
        <PreferredVendor>Vendor1</PreferredVendor>
        <Manufacturer>Advance</Manufacturer>
        <ProductType>kit</ProductType>
        <ProductComponents>
            <ProductComponent>
                <ProductComponentId>61482</ProductComponentId>
                <ProductComponentCode>Component1</ProductComponentCode>
                <ProductComponentName>Component 1</ProductComponentName>
                <ProductComponentQuantity>1</ProductComponentQuantity>
            </ProductComponent>
        </ProductComponents>
        <ProductImages>image1.jpg,image2.jpeg</ProductImages>
        <ProductImagesBase64>
           <ProductImageBase64>
              <FileName>image1.jpg</FileName>
              <ImageData>R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==</ImageData>
           </ProductImageBase64>
           <ProductImageBase64>
              <FileName>image2.jpeg</FileName>
              <ImageData>iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII=</ImageData>
           </ProductImageBase64>
        </ProductImagesBase64>
        <SeoTitle>Test Title</SeoTitle>
        <SeoDescription>The SEO Description Goes here.</SeoDescription>
        <SeoKeywords>The Keywords Goes here.</SeoKeywords>
        <Description>The Description Goes here.</Description>
        <ManufacturerPartNo>895</ManufacturerPartNo>
        <Discontinued>NO</Discontinued>
        <Website>www.abc.com</Website>
        <ProductStockManager>admin</ProductStockManager>
        <SendStockNotification>NO</SendStockNotification>
        <AutoCreatePOAtReorderLevel>NO</AutoCreatePOAtReorderLevel>
        <Asin></Asin>
        <EbayItemId></EbayItemId>
        <Volume>10.0000</Volume>
        <Length>10.0000</Length>
        <Width>10.0000</Width>
        <Height>10.0000</Height>
        <WeightMajor>10.0000</WeightMajor>
        <WeightMinor>10.0000</WeightMinor>
        <ShippingCost>10.00</ShippingCost>
        <IncomeAccount>Sales </IncomeAccount>
        <CogsAccount>Cost of Goods Sold </CogsAccount>
        <AssetAccount>Uncategorized Asset </AssetAccount>
        <ExpenseAccount>Uncategorized Expense </ExpenseAccount>
        <TaxCategory>Taxable</TaxCategory>
        <QuickbooksItem>Hours</QuickbooksItem>
        <QtyInStock>0</QtyInStock>
        <QtyOnSO>0</QtyOnSO>
        <QtyOnPO>0</QtyOnPO>
      	<CreatedTime>01-24-2020 05:19:56</CreatedTime>
      	<CreatedTimeUTC>01-24-2020 15:01:35</CreatedTimeUTC>
        <ModifiedTime>01-24-2020 05:19:56</ModifiedTime>
      	<ModifiedTimeUTC>01-24-2020 15:05:56</ModifiedTimeUTC>
        <ProductCustomFields>
            <CustomField>
                <Name>CustomFied1</Name>
                <Value>Custom info 1</Value>
            </CustomField>
            <CustomField>
                <Name>CustomFied2</Name>
                <Value>Custom info 2</Value>
            </CustomField>
        </ProductCustomFields>
    </Product>
  	<TotalRecords>1</TotalRecords>
    <CurrentPage>1</CurrentPage>
    <TotalPages>1</TotalPages>
    <PageSize>50</PageSize>
</Products>
{
	"Products": {
		"Product": [{
			"ProductName": "Test New Product",
			"ProductCode": "TNP",
			"Barcode": "2654986",
			"ProductCategory": "CARVINGS",
			"PreferredVendor": "Vendor1",
			"Manufacturer": "Advance",
			"ProductType": "lot",
			"ProductImages": "image1.jpg,image2.jpeg",
			"ProductImagesBase64": {
				"ProductImageBase64": [{
						"FileName": "image1.jpg",
						"ImageData": "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
					},
					{
						"FileName": "image2.jpeg",
						"ImageData": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII="
					}
				]
			},
			"SeoTitle": "Test Title",
			"SeoDescription": "The SEO Description Goes here.",
			"SeoKeywords": "The Keywords Goes here.",
			"Description": "The Description Goes here.",
			"ManufacturerPartNo": "895",
			"Discontinued": "NO",
			"Website": "www.abc.com",
			"ProductStockManager": "admin",
			"SendStockNotification": "NO",
			"AutoCreatePOAtReorderLevel": "NO",
			"Asin": "",
			"EbayItemId": "",
			"Volume": "10.0000",
			"Length": "10.0000",
			"Width": "10.0000",
			"Height": "10.0000",
			"WeightMajor": "10.0000",
			"WeightMinor": "10.0000",
			"ShippingCost": "10.00",
			"IncomeAccount": "Sales",
			"CogsAccount": "Cost of Goods Sold",
			"AssetAccount": "Uncategorized Asset",
			"ExpenseAccount": "Uncategorized Expense",
			"TaxCategory": "Taxable",
			"QuickbooksItem": "Hours",
			"QtyInStock": "0",
			"QtyOnSO": "0",
			"QtyOnPO": "0",
			"CreatedTime": "01-24-2020 05:19:56",
			"CreatedTimeUTC": "01-24-2020 15:01:35",
			"ModifiedTime": "01-24-2020 05:19:56",
			"ModifiedTimeUTC": "01-24-2020 15:05:56",
			"ProductCustomFields": {
				"CustomField": [{
						"Name": "CustomFied1",
						"Value": "Custom info 1"
					},
					{
						"Name": "CustomFied2",
						"Value": "Custom info 2"
					}
				]
			}
		}],
		"TotalRecords": "1",
		"CurrentPage": "1",
		"TotalPages": "1",
		"PageSize": "50"
	}
}
<Products>
    <Product>
        <ProductName>Test New Product</ProductName>
        <ProductCode>TNP</ProductCode>
        <Barcode>2654986</Barcode>
        <ProductCategory>CARVINGS</ProductCategory>
        <PreferredVendor>Vendor1</PreferredVendor>
        <Manufacturer>Advance</Manufacturer>
        <ProductType>lot</ProductType>
        <ProductImages>image1.jpg,image2.jpeg</ProductImages>
        <ProductImagesBase64>
           <ProductImageBase64>
              <FileName>image1.jpg</FileName>
              <ImageData>R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==</ImageData>
           </ProductImageBase64>
           <ProductImageBase64>
              <FileName>image2.jpeg</FileName>
              <ImageData>iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII=</ImageData>
           </ProductImageBase64>
        </ProductImagesBase64>
        <SeoTitle>Test Title</SeoTitle>
        <SeoDescription>The SEO Description Goes here.</SeoDescription>
        <SeoKeywords>The Keywords Goes here.</SeoKeywords>
        <Description>The Description Goes here.</Description>
        <ManufacturerPartNo>895</ManufacturerPartNo>
        <Discontinued>NO</Discontinued>
        <Website>www.abc.com</Website>
        <ProductStockManager>admin</ProductStockManager>
        <SendStockNotification>NO</SendStockNotification>
        <AutoCreatePOAtReorderLevel>NO</AutoCreatePOAtReorderLevel>
        <Asin></Asin>
        <EbayItemId></EbayItemId>
        <Volume>10.0000</Volume>
        <Length>10.0000</Length>
        <Width>10.0000</Width>
        <Height>10.0000</Height>
        <WeightMajor>10.0000</WeightMajor>
        <WeightMinor>10.0000</WeightMinor>
        <ShippingCost>10.00</ShippingCost>
        <IncomeAccount>Sales </IncomeAccount>
        <CogsAccount>Cost of Goods Sold </CogsAccount>
        <AssetAccount>Uncategorized Asset </AssetAccount>
        <ExpenseAccount>Uncategorized Expense </ExpenseAccount>
        <TaxCategory>Taxable</TaxCategory>
        <QuickbooksItem>Hours</QuickbooksItem>
        <QtyInStock>0</QtyInStock>
        <QtyOnSO>0</QtyOnSO>
        <QtyOnPO>0</QtyOnPO>
      	<CreatedTime>01-24-2020 05:19:56</CreatedTime>
      	<CreatedTimeUTC>01-24-2020 15:01:35</CreatedTimeUTC>
        <ModifiedTime>01-24-2020 05:19:56</ModifiedTime>
      	<ModifiedTimeUTC>01-24-2020 15:05:56</ModifiedTimeUTC>
        <ProductCustomFields>
            <CustomField>
                <Name>CustomFied1</Name>
                <Value>Custom info 1</Value>
            </CustomField>
            <CustomField>
                <Name>CustomFied2</Name>
                <Value>Custom info 2</Value>
            </CustomField>
        </ProductCustomFields>
    </Product>
  	<TotalRecords>1</TotalRecords>
    <CurrentPage>1</CurrentPage>
    <TotalPages>1</TotalPages>
    <PageSize>50</PageSize>
</Products>
{
	"Products": {
		"Product": [{
			"ProductName": "Test New Product",
			"ProductCode": "TNP",
			"Barcode": "2654986",
			"ProductCategory": "CARVINGS",
			"PreferredVendor": "Vendor1",
			"Manufacturer": "Advance",
			"ProductType": "proxy",
			"ProductComponents": {
				"ProductComponent": {
					"ProductComponentId": "61482",
					"ProductComponentCode": "Component1",
					"ProductComponentName": "Component 1",
					"ProductComponentQuantity": "1"
				}
			},
			"ProductImages": "image1.jpg,image2.jpeg",
			"ProductImagesBase64": {
				"ProductImageBase64": [{
						"FileName": "image1.jpg",
						"ImageData": "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
					},
					{
						"FileName": "image2.jpeg",
						"ImageData": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII="
					}
				]
			},
			"SeoTitle": "Test Title",
			"SeoDescription": "The SEO Description Goes here.",
			"SeoKeywords": "The Keywords Goes here.",
			"Description": "The Description Goes here.",
			"ManufacturerPartNo": "895",
			"Discontinued": "NO",
			"Website": "www.abc.com",
			"ProductStockManager": "admin",
			"SendStockNotification": "NO",
			"AutoCreatePOAtReorderLevel": "NO",
			"Asin": "",
			"EbayItemId": "",
			"Volume": "10.0000",
			"Length": "10.0000",
			"Width": "10.0000",
			"Height": "10.0000",
			"WeightMajor": "10.0000",
			"WeightMinor": "10.0000",
			"ShippingCost": "10.00",
			"IncomeAccount": "Sales",
			"CogsAccount": "Cost of Goods Sold",
			"AssetAccount": "Uncategorized Asset",
			"ExpenseAccount": "Uncategorized Expense",
			"TaxCategory": "Taxable",
			"QuickbooksItem": "Hours",
			"QtyInStock": "0",
			"QtyOnSO": "0",
			"QtyOnPO": "0",
			"CreatedTime": "01-24-2020 05:19:56",
			"CreatedTimeUTC": "01-24-2020 15:01:35",
			"ModifiedTime": "01-24-2020 05:19:56",
			"ModifiedTimeUTC": "01-24-2020 15:05:56",
			"ProductCustomFields": {
				"CustomField": [{
						"Name": "CustomFied1",
						"Value": "Custom info 1"
					},
					{
						"Name": "CustomFied2",
						"Value": "Custom info 2"
					}
				]
			}
		}],
		"TotalRecords": "1",
		"CurrentPage": "1",
		"TotalPages": "1",
		"PageSize": "50"
	}
}
<Products>
    <Product>
        <ProductName>Test New Product</ProductName>
        <ProductCode>TNP</ProductCode>
        <Barcode>2654986</Barcode>
        <ProductCategory>CARVINGS</ProductCategory>
        <PreferredVendor>Vendor1</PreferredVendor>
        <Manufacturer>Advance</Manufacturer>
        <ProductType>proxy</ProductType>
        <ProductComponents>
            <ProductComponent>
                <ProductComponentId>61482</ProductComponentId>
                <ProductComponentCode>Component1</ProductComponentCode>
                <ProductComponentName>Component 1</ProductComponentName>
                <ProductComponentQuantity>1</ProductComponentQuantity>
            </ProductComponent>
        </ProductComponents>
        <ProductImages>image1.jpg,image2.jpeg</ProductImages>
        <ProductImagesBase64>
           <ProductImageBase64>
              <FileName>image1.jpg</FileName>
              <ImageData>R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==</ImageData>
           </ProductImageBase64>
           <ProductImageBase64>
              <FileName>image2.jpeg</FileName>
              <ImageData>iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII=</ImageData>
           </ProductImageBase64>
        </ProductImagesBase64>
        <SeoTitle>Test Title</SeoTitle>
        <SeoDescription>The SEO Description Goes here.</SeoDescription>
        <SeoKeywords>The Keywords Goes here.</SeoKeywords>
        <Description>The Description Goes here.</Description>
        <ManufacturerPartNo>895</ManufacturerPartNo>
        <Discontinued>NO</Discontinued>
        <Website>www.abc.com</Website>
        <ProductStockManager>admin</ProductStockManager>
        <SendStockNotification>NO</SendStockNotification>
        <AutoCreatePOAtReorderLevel>NO</AutoCreatePOAtReorderLevel>
        <Asin></Asin>
        <EbayItemId></EbayItemId>
        <Volume>10.0000</Volume>
        <Length>10.0000</Length>
        <Width>10.0000</Width>
        <Height>10.0000</Height>
        <WeightMajor>10.0000</WeightMajor>
        <WeightMinor>10.0000</WeightMinor>
        <ShippingCost>10.00</ShippingCost>
        <IncomeAccount>Sales </IncomeAccount>
        <CogsAccount>Cost of Goods Sold </CogsAccount>
        <AssetAccount>Uncategorized Asset </AssetAccount>
        <ExpenseAccount>Uncategorized Expense </ExpenseAccount>
        <TaxCategory>Taxable</TaxCategory>
        <QuickbooksItem>Hours</QuickbooksItem>
        <QtyInStock>0</QtyInStock>
        <QtyOnSO>0</QtyOnSO>
        <QtyOnPO>0</QtyOnPO>
      	<CreatedTime>01-24-2020 05:19:56</CreatedTime>
      	<CreatedTimeUTC>01-24-2020 15:01:35</CreatedTimeUTC>
        <ModifiedTime>01-24-2020 05:19:56</ModifiedTime>
      	<ModifiedTimeUTC>01-24-2020 15:05:56</ModifiedTimeUTC>
        <ProductCustomFields>
            <CustomField>
                <Name>CustomFied1</Name>
                <Value>Custom info 1</Value>
            </CustomField>
            <CustomField>
                <Name>CustomFied2</Name>
                <Value>Custom info 2</Value>
            </CustomField>
        </ProductCustomFields>
    </Product>
  	<TotalRecords>1</TotalRecords>
    <CurrentPage>1</CurrentPage>
    <TotalPages>1</TotalPages>
    <PageSize>50</PageSize>
</Products>
{
	"Products": {
		"Product": [{
			"ProductName": "Test New Product",
			"ProductCode": "TNP",
			"Barcode": "2654986",
			"ProductCategory": "CARVINGS",
			"PreferredVendor": "Vendor1",
			"Manufacturer": "Advance",
			"ProductType": "serialised",
			"ProductImages": "image1.jpg,image2.jpeg",
			"ProductImagesBase64": {
				"ProductImageBase64": [{
						"FileName": "image1.jpg",
						"ImageData": "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
					},
					{
						"FileName": "image2.jpeg",
						"ImageData": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII="
					}
				]
			},
			"SeoTitle": "Test Title",
			"SeoDescription": "The SEO Description Goes here.",
			"SeoKeywords": "The Keywords Goes here.",
			"Description": "The Description Goes here.",
			"ManufacturerPartNo": "895",
			"Discontinued": "NO",
			"Website": "www.abc.com",
			"ProductStockManager": "admin",
			"SendStockNotification": "NO",
			"AutoCreatePOAtReorderLevel": "NO",
			"Asin": "",
			"EbayItemId": "",
			"Volume": "10.0000",
			"Length": "10.0000",
			"Width": "10.0000",
			"Height": "10.0000",
			"WeightMajor": "10.0000",
			"WeightMinor": "10.0000",
			"ShippingCost": "10.00",
			"IncomeAccount": "Sales",
			"CogsAccount": "Cost of Goods Sold",
			"AssetAccount": "Uncategorized Asset",
			"ExpenseAccount": "Uncategorized Expense",
			"TaxCategory": "Taxable",
			"QuickbooksItem": "Hours",
			"QtyInStock": "0",
			"QtyOnSO": "0",
			"QtyOnPO": "0",
			"CreatedTime": "01-24-2020 05:19:56",
			"CreatedTimeUTC": "01-24-2020 15:01:35",
			"ModifiedTime": "01-24-2020 05:19:56",
			"ModifiedTimeUTC": "01-24-2020 15:05:56",
			"ProductCustomFields": {
				"CustomField": [{
						"Name": "CustomFied1",
						"Value": "Custom info 1"
					},
					{
						"Name": "CustomFied2",
						"Value": "Custom info 2"
					}
				]
			}
		}],
		"TotalRecords": "1",
		"CurrentPage": "1",
		"TotalPages": "1",
		"PageSize": "50"
	}
}
<Products>
    <Product>
        <ProductName>Test New Product</ProductName>
        <ProductCode>TNP</ProductCode>
        <Barcode>2654986</Barcode>
        <ProductCategory>CARVINGS</ProductCategory>
        <PreferredVendor>Vendor1</PreferredVendor>
        <Manufacturer>Advance</Manufacturer>
        <ProductType>serialised</ProductType>
        <ProductImages>image1.jpg,image2.jpeg</ProductImages>
        <ProductImagesBase64>
           <ProductImageBase64>
              <FileName>image1.jpg</FileName>
              <ImageData>R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==</ImageData>
           </ProductImageBase64>
           <ProductImageBase64>
              <FileName>image2.jpeg</FileName>
              <ImageData>iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII=</ImageData>
           </ProductImageBase64>
        </ProductImagesBase64>
        <SeoTitle>Test Title</SeoTitle>
        <SeoDescription>The SEO Description Goes here.</SeoDescription>
        <SeoKeywords>The Keywords Goes here.</SeoKeywords>
        <Description>The Description Goes here.</Description>
        <ManufacturerPartNo>895</ManufacturerPartNo>
        <Discontinued>NO</Discontinued>
        <Website>www.abc.com</Website>
        <ProductStockManager>admin</ProductStockManager>
        <SendStockNotification>NO</SendStockNotification>
        <AutoCreatePOAtReorderLevel>NO</AutoCreatePOAtReorderLevel>
        <Asin></Asin>
        <EbayItemId></EbayItemId>
        <Volume>10.0000</Volume>
        <Length>10.0000</Length>
        <Width>10.0000</Width>
        <Height>10.0000</Height>
        <WeightMajor>10.0000</WeightMajor>
        <WeightMinor>10.0000</WeightMinor>
        <ShippingCost>10.00</ShippingCost>
        <IncomeAccount>Sales </IncomeAccount>
        <CogsAccount>Cost of Goods Sold </CogsAccount>
        <AssetAccount>Uncategorized Asset </AssetAccount>
        <ExpenseAccount>Uncategorized Expense </ExpenseAccount>
        <TaxCategory>Taxable</TaxCategory>
        <QuickbooksItem>Hours</QuickbooksItem>
        <QtyInStock>0</QtyInStock>
        <QtyOnSO>0</QtyOnSO>
        <QtyOnPO>0</QtyOnPO>
      	<CreatedTime>01-24-2020 05:19:56</CreatedTime>
      	<CreatedTimeUTC>01-24-2020 15:01:35</CreatedTimeUTC>
        <ModifiedTime>01-24-2020 05:19:56</ModifiedTime>
      	<ModifiedTimeUTC>01-24-2020 15:05:56</ModifiedTimeUTC>
        <ProductCustomFields>
            <CustomField>
                <Name>CustomFied1</Name>
                <Value>Custom info 1</Value>
            </CustomField>
            <CustomField>
                <Name>CustomFied2</Name>
                <Value>Custom info 2</Value>
            </CustomField>
        </ProductCustomFields>
    </Product>
  	<TotalRecords>1</TotalRecords>
    <CurrentPage>1</CurrentPage>
    <TotalPages>1</TotalPages>
    <PageSize>50</PageSize>
</Products>
{
	"Products": {
		"Product": [{
			"ProductName": "Test New Product",
			"ProductCode": "TNP",
			"Barcode": "2654986",
			"ProductCategory": "CARVINGS",
			"PreferredVendor": "Vendor1",
			"Manufacturer": "Advance",
			"ProductType": "service",
			"ProductImages": "image1.jpg,image2.jpeg",
			"ProductImagesBase64": {
				"ProductImageBase64": [{
						"FileName": "image1.jpg",
						"ImageData": "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
					},
					{
						"FileName": "image2.jpeg",
						"ImageData": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII="
					}
				]
			},
			"SeoTitle": "Test Title",
			"SeoDescription": "The SEO Description Goes here.",
			"SeoKeywords": "The Keywords Goes here.",
			"Description": "The Description Goes here.",
			"ManufacturerPartNo": "895",
			"Discontinued": "NO",
			"Website": "www.abc.com",
			"ProductStockManager": "admin",
			"SendStockNotification": "NO",
			"AutoCreatePOAtReorderLevel": "NO",
			"Asin": "",
			"EbayItemId": "",
			"Volume": "10.0000",
			"Length": "10.0000",
			"Width": "10.0000",
			"Height": "10.0000",
			"WeightMajor": "10.0000",
			"WeightMinor": "10.0000",
			"ShippingCost": "10.00",
			"IncomeAccount": "Sales",
			"CogsAccount": "Cost of Goods Sold",
			"AssetAccount": "Uncategorized Asset",
			"ExpenseAccount": "Uncategorized Expense",
			"TaxCategory": "Taxable",
			"QuickbooksItem": "Hours",
			"QtyInStock": "0",
			"QtyOnSO": "0",
			"QtyOnPO": "0",
			"CreatedTime": "01-24-2020 05:19:56",
			"CreatedTimeUTC": "01-24-2020 15:01:35",
			"ModifiedTime": "01-24-2020 05:19:56",
			"ModifiedTimeUTC": "01-24-2020 15:05:56",
			"ProductCustomFields": {
				"CustomField": [{
						"Name": "CustomFied1",
						"Value": "Custom info 1"
					},
					{
						"Name": "CustomFied2",
						"Value": "Custom info 2"
					}
				]
			}
		}],
		"TotalRecords": "1",
		"CurrentPage": "1",
		"TotalPages": "1",
		"PageSize": "50"
	}
}
<Products>
    <Product>
        <ProductName>Test New Product</ProductName>
        <ProductCode>TNP</ProductCode>
        <Barcode>2654986</Barcode>
        <ProductCategory>CARVINGS</ProductCategory>
        <PreferredVendor>Vendor1</PreferredVendor>
        <Manufacturer>Advance</Manufacturer>
        <ProductType>service</ProductType>
        <ProductImages>image1.jpg,image2.jpeg</ProductImages>
        <ProductImagesBase64>
           <ProductImageBase64>
              <FileName>image1.jpg</FileName>
              <ImageData>R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==</ImageData>
           </ProductImageBase64>
           <ProductImageBase64>
              <FileName>image2.jpeg</FileName>
              <ImageData>iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk+A8AAQUBAScY42YAAAAASUVORK5CYII=</ImageData>
           </ProductImageBase64>
        </ProductImagesBase64>
        <SeoTitle>Test Title</SeoTitle>
        <SeoDescription>The SEO Description Goes here.</SeoDescription>
        <SeoKeywords>The Keywords Goes here.</SeoKeywords>
        <Description>The Description Goes here.</Description>
        <ManufacturerPartNo>895</ManufacturerPartNo>
        <Discontinued>NO</Discontinued>
        <Website>www.abc.com</Website>
        <ProductStockManager>admin</ProductStockManager>
        <SendStockNotification>NO</SendStockNotification>
        <AutoCreatePOAtReorderLevel>NO</AutoCreatePOAtReorderLevel>
        <Asin></Asin>
        <EbayItemId></EbayItemId>
        <Volume>10.0000</Volume>
        <Length>10.0000</Length>
        <Width>10.0000</Width>
        <Height>10.0000</Height>
        <WeightMajor>10.0000</WeightMajor>
        <WeightMinor>10.0000</WeightMinor>
        <ShippingCost>10.00</ShippingCost>
        <IncomeAccount>Sales </IncomeAccount>
        <CogsAccount>Cost of Goods Sold </CogsAccount>
        <AssetAccount>Uncategorized Asset </AssetAccount>
        <ExpenseAccount>Uncategorized Expense </ExpenseAccount>
        <TaxCategory>Taxable</TaxCategory>
        <QuickbooksItem>Hours</QuickbooksItem>
        <QtyInStock>0</QtyInStock>
        <QtyOnSO>0</QtyOnSO>
        <QtyOnPO>0</QtyOnPO>
      	<CreatedTime>01-24-2020 05:19:56</CreatedTime>
      	<CreatedTimeUTC>01-24-2020 15:01:35</CreatedTimeUTC>
        <ModifiedTime>01-24-2020 05:19:56</ModifiedTime>
      	<ModifiedTimeUTC>01-24-2020 15:05:56</ModifiedTimeUTC>
        <ProductCustomFields>
            <CustomField>
                <Name>CustomFied1</Name>
                <Value>Custom info 1</Value>
            </CustomField>
            <CustomField>
                <Name>CustomFied2</Name>
                <Value>Custom info 2</Value>
            </CustomField>
        </ProductCustomFields>
    </Product>
  	<TotalRecords>1</TotalRecords>
    <CurrentPage>1</CurrentPage>
    <TotalPages>1</TotalPages>
    <PageSize>50</PageSize>
</Products>

WADL

<?xml version="1.0" encoding="utf-8"?>
<application>
   <resources base="https://{yourCompany}.agiliron.net/agiliron/api-40/">
     <resource path="Channels-Products"> 
       <method name="GET">
	   <resource path="{ChannelName}">
         <request>
           <param name="key" type="xsd:string" style="query" required="true"/>
         </request> 
         <response status="200"> 
            <representation mediaType="application/xml" element="yn:ResultSet"/> 
         </response> 
         <response status="400"> 
            <representation mediaType="application/xml" element="ya:Error"/> 
         </response> 
       </method> 
     </resource> 
   </resources>
 </application>