stripeapi-0.1.0.2: Stripe-Library

Safe HaskellNone
LanguageHaskell2010

StripeAPI.Operations.PostAccountLoginLinks

Description

Contains the different functions to run the operation postAccountLoginLinks

Synopsis

Documentation

postAccountLoginLinks Source #

Arguments

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

The configuration to use in the request

-> PostAccountLoginLinksRequestBody

The request body to send

-> m (Either HttpException (Response PostAccountLoginLinksResponse))

Monad containing the result of the operation

POST /v1/account/login_links

<p>Creates a single-use login link for an Express account to access their Stripe dashboard.</p>

<p><strong>You may only create login links for <a href="/docs/connect/express-accounts">Express accounts</a> connected to your platform</strong>.</p>

data PostAccountLoginLinksRequestBody Source #

Defines the data type for the schema postAccountLoginLinksRequestBody

Constructors

PostAccountLoginLinksRequestBody 

Fields

data PostAccountLoginLinksResponse Source #

Represents a response of the operation postAccountLoginLinks.

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

Constructors

PostAccountLoginLinksResponseError String

Means either no matching case available or a parse error

PostAccountLoginLinksResponse200 LoginLink

Successful response.

PostAccountLoginLinksResponseDefault Error

Error response.