Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the different functions to run the operation deleteWebhookEndpointsWebhookEndpoint
Synopsis
- deleteWebhookEndpointsWebhookEndpoint :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> DeleteWebhookEndpointsWebhookEndpointRequestBody -> m (Either HttpException (Response DeleteWebhookEndpointsWebhookEndpointResponse))
- deleteWebhookEndpointsWebhookEndpointRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> DeleteWebhookEndpointsWebhookEndpointRequestBody -> m (Either HttpException (Response ByteString))
- deleteWebhookEndpointsWebhookEndpointM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> DeleteWebhookEndpointsWebhookEndpointRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response DeleteWebhookEndpointsWebhookEndpointResponse))
- deleteWebhookEndpointsWebhookEndpointRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> DeleteWebhookEndpointsWebhookEndpointRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString))
- data DeleteWebhookEndpointsWebhookEndpointRequestBody = DeleteWebhookEndpointsWebhookEndpointRequestBody {
- data DeleteWebhookEndpointsWebhookEndpointResponse
Documentation
deleteWebhookEndpointsWebhookEndpoint Source #
:: (MonadHTTP m, SecurityScheme s) | |
=> Configuration s | The configuration to use in the request |
-> String | webhook_endpoint | Constraints: Maximum length of 5000 |
-> DeleteWebhookEndpointsWebhookEndpointRequestBody | The request body to send |
-> m (Either HttpException (Response DeleteWebhookEndpointsWebhookEndpointResponse)) | Monad containing the result of the operation |
DELETE /v1/webhook_endpoints/{webhook_endpoint}
<p>You can also delete webhook endpoints via the <a href="https://dashboard.stripe.com/account/webhooks">webhook endpoint management</a> page of the Stripe dashboard.</p>
deleteWebhookEndpointsWebhookEndpointRaw :: forall m s. (MonadHTTP m, SecurityScheme s) => Configuration s -> String -> DeleteWebhookEndpointsWebhookEndpointRequestBody -> m (Either HttpException (Response ByteString)) Source #
DELETE /v1/webhook_endpoints/{webhook_endpoint}
The same as deleteWebhookEndpointsWebhookEndpoint
but returns the raw ByteString
deleteWebhookEndpointsWebhookEndpointM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> DeleteWebhookEndpointsWebhookEndpointRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response DeleteWebhookEndpointsWebhookEndpointResponse)) Source #
DELETE /v1/webhook_endpoints/{webhook_endpoint}
Monadic version of deleteWebhookEndpointsWebhookEndpoint
(use with runWithConfiguration
)
deleteWebhookEndpointsWebhookEndpointRawM :: forall m s. (MonadHTTP m, SecurityScheme s) => String -> DeleteWebhookEndpointsWebhookEndpointRequestBody -> ReaderT (Configuration s) m (Either HttpException (Response ByteString)) Source #
DELETE /v1/webhook_endpoints/{webhook_endpoint}
Monadic version of deleteWebhookEndpointsWebhookEndpointRaw
(use with runWithConfiguration
)
data DeleteWebhookEndpointsWebhookEndpointRequestBody Source #
Defines the data type for the schema deleteWebhookEndpointsWebhookEndpointRequestBody
Instances
data DeleteWebhookEndpointsWebhookEndpointResponse Source #
Represents a response of the operation deleteWebhookEndpointsWebhookEndpoint
.
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), DeleteWebhookEndpointsWebhookEndpointResponseError
is used.
DeleteWebhookEndpointsWebhookEndpointResponseError String | Means either no matching case available or a parse error |
DeleteWebhookEndpointsWebhookEndpointResponse200 DeletedWebhookEndpoint | Successful response. |
DeleteWebhookEndpointsWebhookEndpointResponseDefault Error | Error response. |