Skip to main content

List subscriptions

GET 

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

Retrieves a list of all subscriptions.

Filtering

This endpoint supports filtering. For the general syntax, see Filtering.

The following attributes and operators are supported.

OperatorAttributeDescription
eqaccount_id, name, email, external_refEquals. Checks if the values of two operands are equal. If they are, the condition is true.

Including Resources

You can use the include parameter to include the following resources with this endpoint.

ResourceRequiredDescription
plans, productsOptionalRetrieves all plans and products associated with a subscription.
productsOptionalRetrieves all products associated with a subscription.
plansOptionalRetrieves all plans associated with a subscription.

See Characteristics of Include Parameter.

Request

Responses

Success. A list of subscriptions is returned.

Authorization: http

name: BearerTokentype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://euwest.api.elasticpath.com/v2/subscriptions/subscriptions");
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());
Request Collapse all
Base URL
https://euwest.api.elasticpath.com/v2
Auth
Parameters
— query
— query
— query
— query
ResponseClear

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