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

RecurlyClient.Operations.List_account_external_account

Description

Contains the different functions to run the operation list_account_external_account

Synopsis

Documentation

list_account_external_account Source #

Arguments

:: 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.

Constructors

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 #

Arguments

:: 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 #

Arguments

:: 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 #

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

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