---
title: "Get event subscriptions"
url: "https://docs.signnow.com/docs/basic-auth/operations/get-event-subscriptions"
type: "endpoint"
section: "basic-auth"
slug: "basic-auth/operations/get-event-subscriptions"
method: "GET"
path: "/api/v2/events"
operation_id: "get-event-subscriptions"
authorization: "basic"
---

# Get event subscriptions

`GET /api/v2/events`

This endpoint allows API users to retrieve information about all event subscriptions created within a specific application.

This request uses Basic authorization. For the request with Bearer authorization, see [Get list of event subscriptions](/docs/manage-event-subscriptions/operations/get-v2-dashboard-event-subscriptions).

## Authorization

basic

## Responses

### 200

**Example** (`Example 1`)

```json
{
  "data": [
    {
      "id": "00003383cd4943b3bcc1a95b4491e2373c32b06d",
      "event": "document.complete",
      "action": "callback",
      "active": true,
      "created": 1764154675,
      "version": 2,
      "entity_id": 552215426,
      "entity_type": "document",
      "event_count": null,
      "request_method": "post",
      "json_attributes": {
        "use_tls_12": true,
        "callback_url": "https://webhook.site/a0093533-766c-456e-b625-97592745216a",
        "docid_queryparam": false,
        "include_metadata": true
      },
      "application_name": "test_app",
      "entity_unique_id": "55555db945974e2b847b0580d21c386561b415a0",
      "event_subscription_owner_email": "user@email.com"
    }
  ],
  "meta": {
    "pagination": {
      "count": 1,
      "links": [],
      "total": 1,
      "per_page": 15,
      "total_pages": 1,
      "current_page": 1
    }
  }
}
```

**Example** (`Successful request`)

```json
{
  "data": [
    {
      "id": "d5543383cd4943b3bcc1a95b4491e2373c32b06d",
      "event": "document.complete",
      "action": "callback",
      "active": true,
      "created": 1764154675,
      "version": 2,
      "entity_id": 552215426,
      "entity_type": "document",
      "event_count": null,
      "request_method": "post",
      "json_attributes": {
        "use_tls_12": true,
        "callback_url": "https://webhook.site/a0093533-766c-456e-b625-97592745216a",
        "docid_queryparam": false,
        "include_metadata": true
      },
      "application_name": "test_app",
      "entity_unique_id": "f1c71db945974e2b847b0580d21c386561b415a0",
      "event_subscription_owner_email": "greenanna070@gmail.com"
    }
  ],
  "meta": {
    "pagination": {
      "count": 1,
      "links": [],
      "total": 1,
      "per_page": 15,
      "total_pages": 1,
      "current_page": 1
    }
  }
}
```

### 400

Invalid basic token

**Example** (`Invalid basic token`)

```json
{
  "code": 1537,
  "error": "invalid_token"
}
```

## Code Examples

> Replace `$SIGNNOW_ACCESS_TOKEN` and any `{placeholder}` values before running.

### cURL

```bash
curl -X GET \
  "https://api.signnow.com/api/v2/events" \
  -H "Authorization: Basic $SIGNNOW_ACCESS_TOKEN"
```

---
*Full reference: https://docs.signnow.com/docs/basic-auth/operations/get-event-subscriptions*
