Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation getIssuingCardsCardDetails
Synopsis
- getIssuingCardsCardDetails :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> Maybe String -> GetIssuingCardsCardDetailsRequestBody -> m (Either HttpException (Response GetIssuingCardsCardDetailsResponse))
- getIssuingCardsCardDetailsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> Maybe String -> GetIssuingCardsCardDetailsRequestBody -> m (Either HttpException (Response ByteString))
- getIssuingCardsCardDetailsM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> GetIssuingCardsCardDetailsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetIssuingCardsCardDetailsResponse))
- getIssuingCardsCardDetailsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> GetIssuingCardsCardDetailsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data GetIssuingCardsCardDetailsRequestBody = GetIssuingCardsCardDetailsRequestBody {
- data GetIssuingCardsCardDetailsResponse
Documentation
getIssuingCardsCardDetails Source #
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> String | card | Constraints: Maximum length of 5000 |
-> Maybe String | expand: Specifies which fields in the response should be expanded. |
-> GetIssuingCardsCardDetailsRequestBody | The request body to send |
-> m (Either HttpException (Response GetIssuingCardsCardDetailsResponse)) | Monad containing the result of the operation |
GET /v1/issuing/cards/{card}/details
<p>For virtual cards only. Retrieves an Issuing <code>card_details</code> object that contains <a href="/docs/issuing/cards/management#virtual-card-info">the sensitive details</a> of a virtual card.</p>
getIssuingCardsCardDetailsRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> Maybe String -> GetIssuingCardsCardDetailsRequestBody -> m (Either HttpException (Response ByteString)) Source #
GET /v1/issuing/cards/{card}/details
The same as getIssuingCardsCardDetails
but returns the raw ByteString
getIssuingCardsCardDetailsM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> GetIssuingCardsCardDetailsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetIssuingCardsCardDetailsResponse)) Source #
GET /v1/issuing/cards/{card}/details
Monadic version of getIssuingCardsCardDetails
(use with runWithConfiguration
)
getIssuingCardsCardDetailsRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> GetIssuingCardsCardDetailsRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
GET /v1/issuing/cards/{card}/details
Monadic version of getIssuingCardsCardDetailsRaw
(use with runWithConfiguration
)
data GetIssuingCardsCardDetailsRequestBody Source #
Defines the data type for the schema getIssuingCardsCardDetailsRequestBody
data GetIssuingCardsCardDetailsResponse Source #
Represents a response of the operation getIssuingCardsCardDetails
.
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), GetIssuingCardsCardDetailsResponseError
is used.
GetIssuingCardsCardDetailsResponseError String | Means either no matching case available or a parse error |
GetIssuingCardsCardDetailsResponse200 Issuing'cardDetails | Successful response. |
GetIssuingCardsCardDetailsResponseDefault Error | Error response. |