recurly-client-0.1.0.0: Client for Recurly subscription management
Safe HaskellSafe-Inferred
LanguageHaskell2010

RecurlyClient.Operations.List_account_external_subscriptions

Description

Contains the different functions to run the operation list_account_external_subscriptions

Synopsis

Documentation

list_account_external_subscriptions Source #

Arguments

:: forall m. MonadHTTP m 
=> Maybe List_account_external_subscriptionsParametersSort

sort: Sort field. You *really* only want to sort by `updated_at` in ascending order. In descending order updated records will move behind the cursor and could prevent some records from being returned.

-> ClientT m (Response List_account_external_subscriptionsResponse)

Monadic computation which returns the result of the operation

GET /accounts/{account_id}/external_subscriptions

See the Pagination Guide to learn how to use pagination in the API and Client Libraries.

data List_account_external_subscriptionsParametersSort Source #

Defines the enum schema located at components.parameters.sort_dates.schema in the specification.

Represents the parameter named 'sort'

Sort field. You *really* only want to sort by `updated_at` in ascending order. In descending order updated records will move behind the cursor and could prevent some records from being returned.

Constructors

List_account_external_subscriptionsParametersSortOther Value

This case is used if the value encountered during decoding does not match any of the provided cases in the specification.

List_account_external_subscriptionsParametersSortTyped Text

This constructor can be used to send values to the server which are not present in the specification yet.

List_account_external_subscriptionsParametersSortEnumCreated_at

Represents the JSON value "created_at"

List_account_external_subscriptionsParametersSortEnumUpdated_at

Represents the JSON value "updated_at"

Instances

Instances details
FromJSON List_account_external_subscriptionsParametersSort Source # 
Instance details

Defined in RecurlyClient.Operations.List_account_external_subscriptions

ToJSON List_account_external_subscriptionsParametersSort Source # 
Instance details

Defined in RecurlyClient.Operations.List_account_external_subscriptions

Show List_account_external_subscriptionsParametersSort Source # 
Instance details

Defined in RecurlyClient.Operations.List_account_external_subscriptions

Eq List_account_external_subscriptionsParametersSort Source # 
Instance details

Defined in RecurlyClient.Operations.List_account_external_subscriptions

list_account_external_subscriptionsWithConfiguration Source #

Arguments

:: forall m. MonadHTTP m 
=> Configuration

The configuration to use in the request

-> Maybe List_account_external_subscriptionsParametersSort

sort: Sort field. You *really* only want to sort by `updated_at` in ascending order. In descending order updated records will move behind the cursor and could prevent some records from being returned.

-> m (Response List_account_external_subscriptionsResponse)

Monadic computation which returns the result of the operation

GET /accounts/{account_id}/external_subscriptions

The same as list_account_external_subscriptions but accepts an explicit configuration.

list_account_external_subscriptionsRaw Source #

Arguments

:: forall m. MonadHTTP m 
=> Maybe List_account_external_subscriptionsParametersSort

sort: Sort field. You *really* only want to sort by `updated_at` in ascending order. In descending order updated records will move behind the cursor and could prevent some records from being returned.

-> ClientT m (Response ByteString)

Monadic computation which returns the result of the operation

GET /accounts/{account_id}/external_subscriptions

The same as list_account_external_subscriptions but returns the raw ByteString.

list_account_external_subscriptionsWithConfigurationRaw Source #

Arguments

:: forall m. MonadHTTP m 
=> Configuration

The configuration to use in the request

-> Maybe List_account_external_subscriptionsParametersSort

sort: Sort field. You *really* only want to sort by `updated_at` in ascending order. In descending order updated records will move behind the cursor and could prevent some records from being returned.

-> m (Response ByteString)

Monadic computation which returns the result of the operation

GET /accounts/{account_id}/external_subscriptions

The same as list_account_external_subscriptions but accepts an explicit configuration and returns the raw ByteString.