Get all Related Products of a Products' attached Custom Relationship
GEThttps://euwest.api.elasticpath.com/pcm/products/:productID/custom-relationships/:customRelationshipSlug/products
Prerequisites
- Relationships have been created between Products, see Create a Relationship between a product with one or more products.
Request
Responses
- 200
- 400
- 403
- 404
- 422
- 500
Returns all related products.
Bad request. The request failed validation.
Forbidden
Bad Request. Not Found.
Bad request. The request failed validation.
Internal server error. There was a system failure in the platform.
Authorization: http
name: bearerAuthtype: httpscheme: bearer
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://euwest.api.elasticpath.com/pcm/products/:productID/custom-relationships/:customRelationshipSlug/products");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear