AVB LINQ Public API

<back to all web services

ProductSKUAliasRequest

Product Aliases
The following routes are available for this service:
GET/productaliasesGets all a Product Alias with sku for the account.
ProductSKUAliasResponse Parameters:
NameParameterData TypeRequiredDescription
ResponseStatusformResponseStatusNo
ProductAliasesformList<uv_ProductAliasView>No
uv_ProductAliasView Parameters:
NameParameterData TypeRequiredDescription
ProductAliasIdformintNo
ProductIdformintNo
AccountIdformintNo
AliasformstringNo
SkuformstringNo
BrandNameformstringNo

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /productaliases HTTP/1.1 
Host: avb-pos.avbportal.com 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	responseStatus: 
	{
		errorCode: String,
		message: String,
		stackTrace: String,
		errors: 
		[
			{
				errorCode: String,
				fieldName: String,
				message: String,
				meta: 
				{
					String: String
				}
			}
		],
		meta: 
		{
			String: String
		}
	},
	productAliases: 
	[
		{
			productAliasId: 0,
			productId: 0,
			accountId: 0,
			alias: String,
			sku: String,
			brandName: String
		}
	]
}