Skip to main content

Manage subscription products

PUT 

https://euwest.api.elasticpath.com/v2/subscriptions/subscriptions/:subscription_uuid/products

Manage subscription products by replacing, changing or detaching products on the subscription

Request

Responses

Success. The subscription's products have been updated.

Authorization: http

name: BearerTokentype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Put, "https://euwest.api.elasticpath.com/v2/subscriptions/subscriptions/:subscription_uuid/products");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{\n \"data\": [\n {\n \"type\": \"attach\",\n \"products\": [\n \"bafa601f-359c-48da-834e-377b6c0d9466\"\n ]\n },\n {\n \"type\": \"detach\",\n \"products\": [\n \"a8aad94d-60fc-44f7-8dfa-299249566ec4\"\n ]\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/v2
Auth
Parameters
— pathrequired
Body
{
  "data": [
    {
      "type": "attach",
      "products": [
        "bafa601f-359c-48da-834e-377b6c0d9466"
      ]
    },
    {
      "type": "detach",
      "products": [
        "a8aad94d-60fc-44f7-8dfa-299249566ec4"
      ]
    }
  ]
}
ResponseClear

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