stripeapi-0.1.0.2: Stripe-Library

Safe HaskellNone
LanguageHaskell2010

StripeAPI.Operations.PostIssuingVerifications

Description

Contains the different functions to run the operation postIssuingVerifications

Synopsis

Documentation

postIssuingVerifications Source #

Arguments

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

The configuration to use in the request

-> PostIssuingVerificationsRequestBody

The request body to send

-> m (Either HttpException (Response PostIssuingVerificationsResponse))

Monad containing the result of the operation

POST /v1/issuing/verifications

<p>Some actions (eg: updating a PIN) need confirmation from the cardholder</p>

data PostIssuingVerificationsRequestBody Source #

Defines the data type for the schema postIssuingVerificationsRequestBody

Constructors

PostIssuingVerificationsRequestBody 

Fields

data PostIssuingVerificationsRequestBodyScope' Source #

Defines the enum schema postIssuingVerificationsRequestBodyScope'

The scope of the verification (one of `card_pin_retrieve` or `card_pin_update`)

data PostIssuingVerificationsRequestBodyVerificationMethod' Source #

Defines the enum schema postIssuingVerificationsRequestBodyVerification_method'

The method used to send the cardholder the verification (one of `email` or `sms`)

Instances
Eq PostIssuingVerificationsRequestBodyVerificationMethod' Source # 
Instance details

Defined in StripeAPI.Operations.PostIssuingVerifications

Show PostIssuingVerificationsRequestBodyVerificationMethod' Source # 
Instance details

Defined in StripeAPI.Operations.PostIssuingVerifications

ToJSON PostIssuingVerificationsRequestBodyVerificationMethod' Source # 
Instance details

Defined in StripeAPI.Operations.PostIssuingVerifications

FromJSON PostIssuingVerificationsRequestBodyVerificationMethod' Source # 
Instance details

Defined in StripeAPI.Operations.PostIssuingVerifications

data PostIssuingVerificationsResponse Source #

Represents a response of the operation postIssuingVerifications.

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

Constructors

PostIssuingVerificationsResponseError String

Means either no matching case available or a parse error

PostIssuingVerificationsResponse200 Issuing'verification

Successful response.

PostIssuingVerificationsResponseDefault Error

Error response.