Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation getIssuingCardsCardPin
Synopsis
- getIssuingCardsCardPin :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> Maybe String -> String -> GetIssuingCardsCardPinRequestBody -> m (Either HttpException (Response GetIssuingCardsCardPinResponse))
- getIssuingCardsCardPinRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> Maybe String -> String -> GetIssuingCardsCardPinRequestBody -> m (Either HttpException (Response ByteString))
- getIssuingCardsCardPinM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> String -> GetIssuingCardsCardPinRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetIssuingCardsCardPinResponse))
- getIssuingCardsCardPinRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> String -> GetIssuingCardsCardPinRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data GetIssuingCardsCardPinRequestBody = GetIssuingCardsCardPinRequestBody {
- data GetIssuingCardsCardPinResponse
Documentation
getIssuingCardsCardPin 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. |
-> String | verification: The id of the `Verification` that was sent and the code entered by the cardholder |
-> GetIssuingCardsCardPinRequestBody | The request body to send |
-> m (Either HttpException (Response GetIssuingCardsCardPinResponse)) | Monad containing the result of the operation |
GET /v1/issuing/cards/{card}/pin
<p>Retrieves the PIN for a card object, subject to cardholder verification, see <a href="/docs/issuing/pin_management">Retrieve and update cardholder PIN</a></p>
getIssuingCardsCardPinRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> Maybe String -> String -> GetIssuingCardsCardPinRequestBody -> m (Either HttpException (Response ByteString)) Source #
GET /v1/issuing/cards/{card}/pin
The same as getIssuingCardsCardPin
but returns the raw ByteString
getIssuingCardsCardPinM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> String -> GetIssuingCardsCardPinRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response GetIssuingCardsCardPinResponse)) Source #
GET /v1/issuing/cards/{card}/pin
Monadic version of getIssuingCardsCardPin
(use with runWithConfiguration
)
getIssuingCardsCardPinRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> Maybe String -> String -> GetIssuingCardsCardPinRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
GET /v1/issuing/cards/{card}/pin
Monadic version of getIssuingCardsCardPinRaw
(use with runWithConfiguration
)
data GetIssuingCardsCardPinRequestBody Source #
Defines the data type for the schema getIssuingCardsCardPinRequestBody
data GetIssuingCardsCardPinResponse Source #
Represents a response of the operation getIssuingCardsCardPin
.
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), GetIssuingCardsCardPinResponseError
is used.
GetIssuingCardsCardPinResponseError String | Means either no matching case available or a parse error |
GetIssuingCardsCardPinResponse200 Issuing'cardPin | Successful response. |
GetIssuingCardsCardPinResponseDefault Error | Error response. |