stripeapi-0.1.0.2: Stripe-Library

Safe HaskellNone
LanguageHaskell2010

StripeAPI.Operations.PostDisputesDispute

Description

Contains the different functions to run the operation postDisputesDispute

Synopsis

Documentation

postDisputesDispute Source #

Arguments

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

The configuration to use in the request

-> Text

dispute | Constraints: Maximum length of 5000

-> Maybe PostDisputesDisputeRequestBody

The request body to send

-> m (Either HttpException (Response PostDisputesDisputeResponse))

Monad containing the result of the operation

POST /v1/disputes/{dispute}

<p>When you get a dispute, contacting your customer is always the best first step. If that doesn’t work, you can submit evidence to help us resolve the dispute in your favor. You can do this in your <a href="https://dashboard.stripe.com/disputes">dashboard</a>, but if you prefer, you can use the API to submit evidence programmatically.</p>

<p>Depending on your dispute type, different evidence fields will give you a better chance of winning your dispute. To figure out which evidence fields to provide, see our <a href="/docs/disputes/categories">guide to dispute types</a>.</p>

postDisputesDisputeRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> Text -> Maybe PostDisputesDisputeRequestBody -> m (Either HttpException (Response ByteString)) Source #

POST /v1/disputes/{dispute}

The same as postDisputesDispute but returns the raw ByteString

data PostDisputesDisputeRequestBody Source #

Defines the data type for the schema postDisputesDisputeRequestBody

Constructors

PostDisputesDisputeRequestBody 

Fields

data PostDisputesDisputeRequestBodyEvidence' Source #

Defines the data type for the schema postDisputesDisputeRequestBodyEvidence'

Evidence to upload, to respond to a dispute. Updating any field in the hash will submit all fields in the hash for review. The combined character count of all fields is limited to 150,000.

Constructors

PostDisputesDisputeRequestBodyEvidence' 

Fields

data PostDisputesDisputeRequestBodyMetadata' Source #

Defines the data type for the schema postDisputesDisputeRequestBodyMetadata'

Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.

data PostDisputesDisputeResponse Source #

Represents a response of the operation postDisputesDispute.

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

Constructors

PostDisputesDisputeResponseError String

Means either no matching case available or a parse error

PostDisputesDisputeResponse200 Dispute

Successful response.

PostDisputesDisputeResponseDefault Error

Error response.