Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
RecurlyClient.Operations.Get_account_external_account
Description
Contains the different functions to run the operation get_account_external_account
Synopsis
- get_account_external_account :: forall m. MonadHTTP m => ClientT m (Response Get_account_external_accountResponse)
- data Get_account_external_accountResponse
- get_account_external_accountWithConfiguration :: forall m. MonadHTTP m => Configuration -> m (Response Get_account_external_accountResponse)
- get_account_external_accountRaw :: forall m. MonadHTTP m => ClientT m (Response ByteString)
- get_account_external_accountWithConfigurationRaw :: forall m. MonadHTTP m => Configuration -> m (Response ByteString)
Documentation
get_account_external_account Source #
Arguments
:: forall m. MonadHTTP m | |
=> ClientT m (Response Get_account_external_accountResponse) | Monadic computation which returns the result of the operation |
GET /accounts/{account_id}/external_accounts/{external_account_id}
Get an external account for an account
data Get_account_external_accountResponse Source #
Represents a response of the operation get_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), Get_account_external_accountResponseError
is used.
Constructors
Get_account_external_accountResponseError String | Means either no matching case available or a parse error |
Get_account_external_accountResponse200 ExternalAccount | A external account on an account. |
Get_account_external_accountResponse404 Error | Incorrect account or external_account ID. |
Get_account_external_accountResponse406 Error | Unavailable API version |
Get_account_external_accountResponse422 Error | Feature not enabled on site |
Get_account_external_accountResponseDefault Error | Unexpected error. |
Instances
get_account_external_accountWithConfiguration Source #
Arguments
:: forall m. MonadHTTP m | |
=> Configuration | The configuration to use in the request |
-> m (Response Get_account_external_accountResponse) | Monadic computation which returns the result of the operation |
GET /accounts/{account_id}/external_accounts/{external_account_id}
The same as get_account_external_account
but accepts an explicit configuration.
get_account_external_accountRaw Source #
Arguments
:: forall m. MonadHTTP m | |
=> ClientT m (Response ByteString) | Monadic computation which returns the result of the operation |
GET /accounts/{account_id}/external_accounts/{external_account_id}
The same as get_account_external_account
but returns the raw ByteString
.
get_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 |
GET /accounts/{account_id}/external_accounts/{external_account_id}
The same as get_account_external_account
but accepts an explicit configuration and returns the raw ByteString
.