Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation list_account_external_account
Synopsis
- list_account_external_account :: forall m. MonadHTTP m => ClientT m (Response List_account_external_accountResponse)
- data List_account_external_accountResponse
- = List_account_external_accountResponseError String
- | List_account_external_accountResponse200 ExternalAccountList
- | List_account_external_accountResponse404 Error
- | List_account_external_accountResponse406 Error
- | List_account_external_accountResponse422 Error
- | List_account_external_accountResponseDefault Error
- list_account_external_accountWithConfiguration :: forall m. MonadHTTP m => Configuration -> m (Response List_account_external_accountResponse)
- list_account_external_accountRaw :: forall m. MonadHTTP m => ClientT m (Response ByteString)
- list_account_external_accountWithConfigurationRaw :: forall m. MonadHTTP m => Configuration -> m (Response ByteString)
Documentation
list_account_external_account Source #
:: forall m. MonadHTTP m | |
=> ClientT m (Response List_account_external_accountResponse) | Monadic computation which returns the result of the operation |
GET /accounts/{account_id}/external_accounts
List external accounts for an account
data List_account_external_accountResponse Source #
Represents a response of the operation list_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), List_account_external_accountResponseError
is used.
List_account_external_accountResponseError String | Means either no matching case available or a parse error |
List_account_external_accountResponse200 ExternalAccountList | A list of external accounts on an account. |
List_account_external_accountResponse404 Error | Incorrect account or external_account ID. |
List_account_external_accountResponse406 Error | Unavailable API version |
List_account_external_accountResponse422 Error | Feature not enabled on site |
List_account_external_accountResponseDefault Error | Unexpected error. |
list_account_external_accountWithConfiguration Source #
:: forall m. MonadHTTP m | |
=> Configuration | The configuration to use in the request |
-> m (Response List_account_external_accountResponse) | Monadic computation which returns the result of the operation |
GET /accounts/{account_id}/external_accounts
The same as list_account_external_account
but accepts an explicit configuration.
list_account_external_accountRaw Source #
:: forall m. MonadHTTP m | |
=> ClientT m (Response ByteString) | Monadic computation which returns the result of the operation |
GET /accounts/{account_id}/external_accounts
The same as list_account_external_account
but returns the raw ByteString
.
list_account_external_accountWithConfigurationRaw Source #
:: 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
The same as list_account_external_account
but accepts an explicit configuration and returns the raw ByteString
.