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

RecurlyClient.Operations.Get_account_note

Description

Contains the different functions to run the operation get_account_note

Synopsis

Documentation

get_account_note Source #

Arguments

:: forall m. MonadHTTP m 
=> Get_account_noteParameters

Contains all available parameters of this operation (query and path parameters)

-> ClientT m (Response Get_account_noteResponse)

Monadic computation which returns the result of the operation

GET /accounts/{account_id}/notes/{account_note_id}

Fetch an account note

data Get_account_noteParameters Source #

Defines the object schema located at paths./accounts/{account_id}/notes/{account_note_id}.GET.parameters in the specification.

Constructors

Get_account_noteParameters 

Fields

data Get_account_noteResponse Source #

Represents a response of the operation get_account_note.

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_noteResponseError is used.

Constructors

Get_account_noteResponseError String

Means either no matching case available or a parse error

Get_account_noteResponse200 AccountNote

An account note.

Get_account_noteResponse404 Error

Incorrect site, account or note ID.

Get_account_noteResponseDefault Error

Unexpected error.

get_account_noteWithConfiguration Source #

Arguments

:: forall m. MonadHTTP m 
=> Configuration

The configuration to use in the request

-> Get_account_noteParameters

Contains all available parameters of this operation (query and path parameters)

-> m (Response Get_account_noteResponse)

Monadic computation which returns the result of the operation

GET /accounts/{account_id}/notes/{account_note_id}

The same as get_account_note but accepts an explicit configuration.

get_account_noteRaw Source #

Arguments

:: forall m. MonadHTTP m 
=> Get_account_noteParameters

Contains all available parameters of this operation (query and path parameters)

-> ClientT m (Response ByteString)

Monadic computation which returns the result of the operation

GET /accounts/{account_id}/notes/{account_note_id}

The same as get_account_note but returns the raw ByteString.

get_account_noteWithConfigurationRaw Source #

Arguments

:: forall m. MonadHTTP m 
=> Configuration

The configuration to use in the request

-> Get_account_noteParameters

Contains all available parameters of this operation (query and path parameters)

-> m (Response ByteString)

Monadic computation which returns the result of the operation

GET /accounts/{account_id}/notes/{account_note_id}

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