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

# Jackpot Remove

> This API removes a jackpot. The jackpotId must be passed in the request body. A jackpot cannot be removed if it does not exist, or if it is a one-time jackpot (forOnce = true) that is currently active. Only non-active or Infinite jackpots are eligible for deletion.

{/* The status indicates whether the jackpot is currently active or not. */}

## Headers

<ParamField header="x-api-key" type="string" required>
  A unique identifier associated with operator calling API.
</ParamField>

<ParamField header="x-signature" type="string" required>
  A SHA256 HMAC signature generated using the request body and timestamp.
  Format: HMAC\_SHA256(JSON.stringify(data) + '|' + timestamp), signed using the
  provided secret key.
</ParamField>

<ParamField header="x-timestamp" type="string" required>
  An Unix timestamp (milliseconds) Used to verify the request’s freshness.
  Ensure the same value is used in signature generation.

  <Note>
    The signature will remain valid for only 5 minutes from the provided
    timestamp.
  </Note>
</ParamField>

<ParamField header="Content-Type" type="string" required>
  Must be set to `application/json`.
</ParamField>

## Request Body

<ParamField body="jackpotId " type="string" required>
  A unique identifier representing the jackpot you want to update
</ParamField>

## Response

<ResponseField name="status" type="string" required>  Code indicates status of the request weather it is succeed or failed. We have listed error codes <a href="/introduction#error-codes">here</a></ResponseField>
<ResponseField name="message" type="string" required>  Description of status code / error code. </ResponseField>

<ResponseExample>
  ```json SUCCESS theme={null}
  {
      "status": "RS_OK",
      "message": "Jackpot 35202c21-2686-4f16-ac53-33226a336fa4 has been activated successfully."
  }

  ```

  ```json FAILURE theme={null}
  {
    "status": "RS_ERROR",
    "message": "Oops! Something went wrong. Please refresh the page or try again in a moment"
  }
  ```
</ResponseExample>
