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

Path Parameters

    subscription_uuid UUIDrequired

    The unique identifier of the subscription.

Body

    data object[]required

    A list of product IDs to manage on the subscription.

  • Array [
  • type stringrequired

    Possible values: [attach, detach, replace]

    products UUID (string)[]required

    Possible values: >= 1

  • ]

Responses

Success. The subscription's products have been updated.

Authorization: http

name: BearerTokentype: httpscheme: bearer
curl -L -X PUT 'https://euwest.api.elasticpath.com/v2/subscriptions/subscriptions/:subscription_uuid/products' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"data": [
{
"type": "attach",
"products": [
"bafa601f-359c-48da-834e-377b6c0d9466"
]
},
{
"type": "detach",
"products": [
"a8aad94d-60fc-44f7-8dfa-299249566ec4"
]
}
]
}'
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!