Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation getAccountBankAccountsId
Synopsis
- getAccountBankAccountsId :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> String -> GetAccountBankAccountsIdRequestBody -> m (Either HttpException (Response GetAccountBankAccountsIdResponse))
- getAccountBankAccountsIdRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> String -> GetAccountBankAccountsIdRequestBody -> m (Either HttpException (Response ByteString))
- getAccountBankAccountsIdM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> GetAccountBankAccountsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetAccountBankAccountsIdResponse))
- getAccountBankAccountsIdRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> GetAccountBankAccountsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data GetAccountBankAccountsIdRequestBody = GetAccountBankAccountsIdRequestBody {
- data GetAccountBankAccountsIdResponse
Documentation
getAccountBankAccountsId Source #
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> Maybe String | expand: Specifies which fields in the response should be expanded. |
-> String | id |
-> GetAccountBankAccountsIdRequestBody | The request body to send |
-> m (Either HttpException (Response GetAccountBankAccountsIdResponse)) | Monad containing the result of the operation |
GET /v1/account/bank_accounts/{id}
<p>Retrieve a specified external account for a given account.</p>
getAccountBankAccountsIdRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe String -> String -> GetAccountBankAccountsIdRequestBody -> m (Either HttpException (Response ByteString)) Source #
GET /v1/account/bank_accounts/{id}
The same as getAccountBankAccountsId
but returns the raw ByteString
getAccountBankAccountsIdM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> GetAccountBankAccountsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetAccountBankAccountsIdResponse)) Source #
GET /v1/account/bank_accounts/{id}
Monadic version of getAccountBankAccountsId
(use with runWithConfiguration
)
getAccountBankAccountsIdRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => Maybe String -> String -> GetAccountBankAccountsIdRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
GET /v1/account/bank_accounts/{id}
Monadic version of getAccountBankAccountsIdRaw
(use with runWithConfiguration
)
data GetAccountBankAccountsIdRequestBody Source #
Defines the data type for the schema getAccountBankAccountsIdRequestBody
data GetAccountBankAccountsIdResponse Source #
Represents a response of the operation getAccountBankAccountsId
.
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), GetAccountBankAccountsIdResponseError
is used.
GetAccountBankAccountsIdResponseError String | Means either no matching case available or a parse error |
GetAccountBankAccountsIdResponse200 ExternalAccount | Successful response. |
GetAccountBankAccountsIdResponseDefault Error | Error response. |