stripeapi-2.0.0.1: Stripe-Library
Safe HaskellNone
LanguageHaskell2010

StripeAPI.Operations.PostFiles

Description

Contains the different functions to run the operation postFiles

Synopsis

Documentation

postFiles Source #

Arguments

:: forall m. MonadHTTP m 
=> ClientT m (Response PostFilesResponse)

Monadic computation which returns the result of the operation

POST /v1/files

<p>To upload a file to Stripe, you’ll need to send a request of type <code>multipart/form-data</code>. The request should contain the file you would like to upload, as well as the parameters for creating a file.</p>

<p>All of Stripe’s officially supported Client libraries should have support for sending <code>multipart/form-data</code>.</p>

data PostFilesResponse Source #

Represents a response of the operation postFiles.

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

Constructors

PostFilesResponseError String

Means either no matching case available or a parse error

PostFilesResponse200 File

Successful response.

PostFilesResponseDefault Error

Error response.