AVB LINQ Public API

<back to all web services

ProductRelationshipRequest

Related Products
The following routes are available for this service:
GET/relatedproducts/{productId}Gets the related products for the productid.
ProductRelationshipRequest Parameters:
NameParameterData TypeRequiredDescription
ProductIdpathintNo
ProductRelationshipResponse Parameters:
NameParameterData TypeRequiredDescription
ResponseStatusformResponseStatusNo
ProductRelationshipsformList<ProductRelationshipModel>No
ProductRelationshipModel Parameters:
NameParameterData TypeRequiredDescription
IdformintNo
ProductRelationshipTypeIdformintNo
BaseProductIdformintNo
LinkedProductIdformintNo
Ordinalformint?No

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 /relatedproducts/{productId} 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
		}
	},
	productRelationships: 
	[
		{
			id: 0,
			productRelationshipTypeId: 0,
			baseProductId: 0,
			linkedProductId: 0,
			ordinal: 0
		}
	]
}