> For the complete documentation index, see [llms.txt](https://api-docs.rightsline.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api-docs.rightsline.com/entities/contract-scope/retrieve-contract-scope-date-alerts.md).

# Retrieve contract scope date alerts

`GET` `https://ris.rightsline.com/v4/contract-scope/:id/date-alerts`

**Path Parameters**

| Name | Type    | Description                          |
| ---- | ------- | ------------------------------------ |
| id\* | integer | The unique ID of the contract scope. |

**Headers**

| Name           | Type   | Description             |
| -------------- | ------ | ----------------------- |
| x-api-key      | string | Your company's API key. |
| Authentication | string | Authentication token.   |

**Response**

Returns an array of date alert objects. Returns `[]` when no alerts exist.

```
[
  {
    "id": 1,
    "tagLabel": "expiration_date",
    "charId": 100,
    "deliveryDate": "2024-12-31T00:00:00.000Z",
    "subject": "Alert: Expiration Date",
    "recipients": []
  }
]
```
