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

RecurlyClient.Operations.Get_export_dates

Description

Contains the different functions to run the operation get_export_dates

Synopsis

Documentation

get_export_dates Source #

Arguments

:: forall m. MonadHTTP m 
=> ClientT m (Response Get_export_datesResponse)

Monadic computation which returns the result of the operation

GET /export_dates

Returns a list of dates for which export files are available for download.

data Get_export_datesResponse Source #

Represents a response of the operation get_export_dates.

The response constructor is chosen by the status code of the response. If no case matches (no specific case for the response code, no range case, no default case), Get_export_datesResponseError is used.

Constructors

Get_export_datesResponseError String

Means either no matching case available or a parse error

Get_export_datesResponse200 ExportDates

Returns a list of dates.

Get_export_datesResponse400 Error

Invalid or unpermitted parameter.

Get_export_datesResponse404 Error

Incorrect site ID.

Get_export_datesResponseDefault Error

Unexpected error.

get_export_datesWithConfiguration Source #

Arguments

:: forall m. MonadHTTP m 
=> Configuration

The configuration to use in the request

-> m (Response Get_export_datesResponse)

Monadic computation which returns the result of the operation

GET /export_dates

The same as get_export_dates but accepts an explicit configuration.

get_export_datesRaw Source #

Arguments

:: forall m. MonadHTTP m 
=> ClientT m (Response ByteString)

Monadic computation which returns the result of the operation

GET /export_dates

The same as get_export_dates but returns the raw ByteString.

get_export_datesWithConfigurationRaw Source #

Arguments

:: forall m. MonadHTTP m 
=> Configuration

The configuration to use in the request

-> m (Response ByteString)

Monadic computation which returns the result of the operation

GET /export_dates

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