stripeapi-2.0.0.1: Stripe-Library
Safe HaskellNone
LanguageHaskell2010

StripeAPI.Operations.PostAccountLoginLinks

Description

Contains the different functions to run the operation postAccountLoginLinks

Synopsis

Documentation

postAccountLoginLinks Source #

Arguments

:: forall m. MonadHTTP m 
=> PostAccountLoginLinksRequestBody

The request body to send

-> ClientT m (Response PostAccountLoginLinksResponse)

Monadic computation which returns 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 object schema located at paths./v1/account/login_links.POST.requestBody.content.application/x-www-form-urlencoded.schema in the specification.

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.