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

RecurlyClient.Operations.Remove_account_acquisition

Description

Contains the different functions to run the operation remove_account_acquisition

Synopsis

Documentation

remove_account_acquisition Source #

Arguments

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

Monadic computation which returns the result of the operation

DELETE /accounts/{account_id}/acquisition

Remove an account's acquisition data

data Remove_account_acquisitionResponse Source #

Represents a response of the operation remove_account_acquisition.

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), Remove_account_acquisitionResponseError is used.

Constructors

Remove_account_acquisitionResponseError String

Means either no matching case available or a parse error

Remove_account_acquisitionResponse204

Acquisition data was succesfully deleted.

Remove_account_acquisitionResponse404 Error

Incorrect site or account ID.

remove_account_acquisitionWithConfiguration Source #

Arguments

:: forall m. MonadHTTP m 
=> Configuration

The configuration to use in the request

-> m (Response Remove_account_acquisitionResponse)

Monadic computation which returns the result of the operation

DELETE /accounts/{account_id}/acquisition

The same as remove_account_acquisition but accepts an explicit configuration.

remove_account_acquisitionRaw Source #

Arguments

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

Monadic computation which returns the result of the operation

DELETE /accounts/{account_id}/acquisition

The same as remove_account_acquisition but returns the raw ByteString.

remove_account_acquisitionWithConfigurationRaw 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

DELETE /accounts/{account_id}/acquisition

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