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

RecurlyClient.Operations.Get_export_files

Description

Contains the different functions to run the operation get_export_files

Synopsis

Documentation

get_export_files Source #

Arguments

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

Monadic computation which returns the result of the operation

GET /export_dates/{export_date}/export_files

Returns a list of presigned URLs to download export files for the given date, with their MD5 sums.

data Get_export_filesResponse Source #

Represents a response of the operation get_export_files.

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_filesResponseError is used.

Constructors

Get_export_filesResponseError String

Means either no matching case available or a parse error

Get_export_filesResponse200 ExportFiles

Returns a list of export files to download.

Get_export_filesResponse400 Error

Invalid or unpermitted parameter.

Get_export_filesResponse404 Error

Incorrect site ID or date.

Get_export_filesResponseDefault Error

Unexpected error.

get_export_filesWithConfiguration Source #

Arguments

:: forall m. MonadHTTP m 
=> Configuration

The configuration to use in the request

-> m (Response Get_export_filesResponse)

Monadic computation which returns the result of the operation

GET /export_dates/{export_date}/export_files

The same as get_export_files but accepts an explicit configuration.

get_export_filesRaw Source #

Arguments

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

Monadic computation which returns the result of the operation

GET /export_dates/{export_date}/export_files

The same as get_export_files but returns the raw ByteString.

get_export_filesWithConfigurationRaw 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/{export_date}/export_files

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