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

RecurlyClient.Operations.Get_business_entity

Description

Contains the different functions to run the operation get_business_entity

Synopsis

Documentation

get_business_entity Source #

Arguments

:: forall m. MonadHTTP m 
=> ClientT m (Response Get_business_entityResponse)

Monadic computation which returns the result of the operation

GET /business_entities/{business_entity_id}

Fetch a business entity

data Get_business_entityResponse Source #

Represents a response of the operation get_business_entity.

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

Constructors

Get_business_entityResponseError String

Means either no matching case available or a parse error

Get_business_entityResponse200 BusinessEntity

Business entity details

Get_business_entityResponse404 Error

Incorrect site or business entity ID.

Get_business_entityResponseDefault Error

Unexpected error.

get_business_entityWithConfiguration Source #

Arguments

:: forall m. MonadHTTP m 
=> Configuration

The configuration to use in the request

-> m (Response Get_business_entityResponse)

Monadic computation which returns the result of the operation

GET /business_entities/{business_entity_id}

The same as get_business_entity but accepts an explicit configuration.

get_business_entityRaw Source #

Arguments

:: forall m. MonadHTTP m 
=> ClientT m (Response ByteString)

Monadic computation which returns the result of the operation

GET /business_entities/{business_entity_id}

The same as get_business_entity but returns the raw ByteString.

get_business_entityWithConfigurationRaw 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 /business_entities/{business_entity_id}

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