> For the complete documentation index, see [llms.txt](https://rymera.gitbook.io/advanced-coupons-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rymera.gitbook.io/advanced-coupons-api/wc-store-credits-v1/entries/delete-store-credit-entry.md).

# Delete store credit entry

### DELET&#x45;**:** /wp-json/wc-store-credits/v1/entries‌/{entry\_id} <a href="#post-wp-json-loyalty-program-v-1-customers-points-user_id" id="post-wp-json-loyalty-program-v-1-customers-points-user_id"></a>

{% tabs %}
{% tab title="Request" %}
**Requirements:**

* Logged-in user
* user role with `manage_woocommerce` user capability

<table data-header-hidden><thead><tr><th width="150">Method</th><th>Endpoint</th></tr></thead><tbody><tr><td>Method</td><td>Endpoint</td></tr><tr><td>DELETE</td><td>/wp-json/wc-store-credits/v1/entries‌/{entry_id}</td></tr></tbody></table>

| Query Parameters | Required | Type    | Default      | Description                                         |
| ---------------- | -------- | ------- | ------------ | --------------------------------------------------- |
| ​date\_format    | ​no      | ​string | F j, Y g:i a | Date format of virtual coupon response date values. |
| {% endtab %}     |          |         |              |                                                     |

{% tab title="Request Example" %}
Delete store credit entry with id **36**

```
DELETE: http://example.com/wp-json/wc-store-credits/v1/entries/‌36
```

{% endtab %}

{% tab title="Response Example" %}
**Status: 200 OK**

Delete store credit entry with id **36**

```
{
  "message": "Successfully deleted store credit entry.",
  "data": {
    "key": "36",
    "id": 36,
    "amount_raw": 30.25,
    "amount": "$30.25",
    "type": "increase",
    "activity": "Admin adjustment (increase)",
    "user_id": 1,
    "date": "2021-11-17 11:31:26",
    "rel_link": "",
    "rel_label": "-",
    "note": ""
  },
  "balance_raw": 270,
  "balance": "$270.00"
}
```

**Status: 403 Forbidden**

```
{
    "code": "rest_forbidden_context",
    "message": "Sorry, you are not allowed access to this endpoint.",
    "data": {
        "status": 401
    }
}
```

{% endtab %}
{% endtabs %}
