Manage subscription products
PUThttps://euwest.api.elasticpath.com/v2/subscriptions/subscriptions/:subscription_uuid/products
Manage subscription products by replacing, changing or detaching products on the subscription
Request
Responses
- 204
- 400
- 403
- 404
- 500
Success. The subscription's products have been updated.
Bad request. The request failed validation.
Forbidden. The operation is forbidden on this entity.
Not found. The requested entity does not exist.
Internal server error. There was a system failure in the platform.
Authorization: http
name: BearerTokentype: 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.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());
ResponseClear