> ## Documentation Index
> Fetch the complete documentation index at: https://docs.corrily.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete charge

<RequestExample>
  ```bash Bash theme={null}
  curl --request DELETE \
       --url https://client.corrily.com/v1/charges/user_id/origin/origin_id \
       --header 'Accept: application/json'
  ```
</RequestExample>

## Path Params

<ParamField path="origin" type="string" required>
  The payment gateway that handled the charge. Accepted values: `stripe`,
  `paypal`, `chargebee`.
</ParamField>

<ParamField path="origin_id" type="string" required>
  A unique identifier for the charge. This can be the ID that the payment
  gateway assigned to the charge.
</ParamField>

<ParamField path="user_id" type="string" required>
  The [User ID](../users/user-id) that you provided when you [created the
  charge](./create-charge).
</ParamField>
