Skip to main content

Get all Related Products of a Product

GET 

https://euwest.api.elasticpath.com/catalog/products/:product_id/relationships/:custom_relationship_slug/products

Returns related products of the provided product ID from a catalog.

Request

Responses

The related products of a catalog.

Authorization: Authorization

name: Authorizationtype: httpin: headerscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://euwest.api.elasticpath.com/catalog/products/:product_id/relationships/:custom_relationship_slug/products");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <Authorization>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://euwest.api.elasticpath.com
Auth
Parameters
— pathrequired
— pathrequired
— query
— query
— query
— header
— header
— header
ResponseClear

Click the Send API Request button above and see the response here!