Skip to main content

Attach Custom Relationships to a Product

POST 

https://euwest.api.elasticpath.com/pcm/products/:productID/custom-relationships

You can attach up to 5 custom relationships to a product.

Once you have attached a custom relationship to a product, you can then create relationships from a product to one or many other products. See Associate a product to one or more products using a custom relationship.

See Custom Relationships.

Prerequisites

Request

Responses

Returns the attached custom relationships

Authorization: http

name: bearerAuthtype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://euwest.api.elasticpath.com/pcm/products/:productID/custom-relationships");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{\n \"data\": [\n {\n \"slug\": \"string\",\n \"type\": \"custom-relationship\"\n }\n ]\n}", null, "application/json");
request.Content = content;
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
Body
{
  "data": [
    {
      "slug": "string",
      "type": "custom-relationship"
    }
  ]
}
ResponseClear

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

We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.