stripeapi-0.1.0.2: Stripe-Library

Safe HaskellNone
LanguageHaskell2010

StripeAPI.Operations.GetTokensToken

Description

Contains the different functions to run the operation getTokensToken

Synopsis

Documentation

getTokensToken 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

token | Constraints: Maximum length of 5000

-> Maybe GetTokensTokenRequestBody

The request body to send

-> m (Either HttpException (Response GetTokensTokenResponse))

Monad containing the result of the operation

GET /v1/tokens/{token}

<p>Retrieves the token with the given ID.</p>

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

GET /v1/tokens/{token}

The same as getTokensToken but returns the raw ByteString

data GetTokensTokenResponse Source #

Represents a response of the operation getTokensToken.

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

Constructors

GetTokensTokenResponseError String

Means either no matching case available or a parse error

GetTokensTokenResponse200 Token

Successful response.

GetTokensTokenResponseDefault Error

Error response.