Skip to main content
Feedback

X-Flow-delete

This extension allows you to perform delete operations using your OpenAPI document.

Example

1  x-flow-delete:
2 path: /pet/{petId}
3 operation: Delete
4 parameters:
5 petId: externalId

Properties

PropertyDescription
pathThe path representing the relative endpoint called to perform the delete operation.
operationThe HTTP method used to make the request.
parametersThe parameters included in the request. In this example, the externalId will be mapped to the petId required in the URL.
On this Page