Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
RecurlyClient.Operations.Delete_account_external_account
Description
Contains the different functions to run the operation delete_account_external_account
Synopsis
- delete_account_external_account :: forall m. MonadHTTP m => ClientT m (Response Delete_account_external_accountResponse)
- data Delete_account_external_accountResponse
- = Delete_account_external_accountResponseError String
- | Delete_account_external_accountResponse200 ExternalAccount
- | Delete_account_external_accountResponse404 Error
- | Delete_account_external_accountResponse406 Error
- | Delete_account_external_accountResponse422 Error
- | Delete_account_external_accountResponseDefault Error
- delete_account_external_accountWithConfiguration :: forall m. MonadHTTP m => Configuration -> m (Response Delete_account_external_accountResponse)
- delete_account_external_accountRaw :: forall m. MonadHTTP m => ClientT m (Response ByteString)
- delete_account_external_accountWithConfigurationRaw :: forall m. MonadHTTP m => Configuration -> m (Response ByteString)
Documentation
delete_account_external_account Source #
Arguments
:: forall m. MonadHTTP m | |
=> ClientT m (Response Delete_account_external_accountResponse) | Monadic computation which returns the result of the operation |
DELETE /accounts/{account_id}/external_accounts/{external_account_id}
Delete an external account for an account
data Delete_account_external_accountResponse Source #
Represents a response of the operation delete_account_external_account
.
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), Delete_account_external_accountResponseError
is used.
Constructors
Delete_account_external_accountResponseError String | Means either no matching case available or a parse error |
Delete_account_external_accountResponse200 ExternalAccount | Successful Delete |
Delete_account_external_accountResponse404 Error | External Account not found |
Delete_account_external_accountResponse406 Error | Unavailable API version |
Delete_account_external_accountResponse422 Error | Feature not enabled on site |
Delete_account_external_accountResponseDefault Error | Unexpected error. |
delete_account_external_accountWithConfiguration Source #
Arguments
:: forall m. MonadHTTP m | |
=> Configuration | The configuration to use in the request |
-> m (Response Delete_account_external_accountResponse) | Monadic computation which returns the result of the operation |
DELETE /accounts/{account_id}/external_accounts/{external_account_id}
The same as delete_account_external_account
but accepts an explicit configuration.
delete_account_external_accountRaw Source #
Arguments
:: forall m. MonadHTTP m | |
=> ClientT m (Response ByteString) | Monadic computation which returns the result of the operation |
DELETE /accounts/{account_id}/external_accounts/{external_account_id}
The same as delete_account_external_account
but returns the raw ByteString
.
delete_account_external_accountWithConfigurationRaw 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}/external_accounts/{external_account_id}
The same as delete_account_external_account
but accepts an explicit configuration and returns the raw ByteString
.