stripeapi-0.1.0.2: Stripe-Library

Safe HaskellNone
LanguageHaskell2010

StripeAPI.Operations.GetProductsId

Description

Contains the different functions to run the operation getProductsId

Synopsis

Documentation

getProductsId Source #

Arguments

:: (MonadHTTP m, SecurityScheme s) 
=> Configuration s

The configuration to use in the request

-> Maybe Text

expand: Specifies which fields in the response should be expanded.

-> Text

id | Constraints: Maximum length of 5000

-> Maybe GetProductsIdRequestBody

The request body to send

-> m (Either HttpException (Response GetProductsIdResponse))

Monad containing the result of the operation

GET /v1/products/{id}

<p>Retrieves the details of an existing product. Supply the unique product ID from either a product creation request or the product list, and Stripe will return the corresponding product information.</p>

getProductsIdRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Maybe Text -> Text -> Maybe GetProductsIdRequestBody -> m (Either HttpException (Response ByteString)) Source #

GET /v1/products/{id}

The same as getProductsId but returns the raw ByteString

data GetProductsIdResponse Source #

Represents a response of the operation getProductsId.

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), GetProductsIdResponseError is used.

Constructors

GetProductsIdResponseError String

Means either no matching case available or a parse error

GetProductsIdResponse200 Product

Successful response.

GetProductsIdResponseDefault Error

Error response.