Source: https://dinakar-rewind.docs.pageloop.ai/api-reference/admin/adminattendingpending

# List source rows awaiting review

GET `https://api.rewind.rest/v1/admin/attending/pending`

Returns attended\_event\_sources rows that have not been linked to a canonical event yet. Use this to manually review parser failures or low-confidence candidates before promoting or rejecting them.

## Authorization

#### Authorization (header, string, required)

API key. Read keys (rw\_live\_...) access GET endpoints. Admin keys (rw\_admin\_...) access all endpoints.

## Query Parameters

#### source\_type (query, enum (string)) — allowed: gcal, gmail, manual

#### source\_ref (query, string)

#### limit (query, integer)

## Response

#### 200

Pending source rows

#### data (array of object, required)

#### properties

#### id (integer, required)

#### source\_type (string, required)

#### source\_ref (string, required)

#### raw\_data (object, required)

#### match\_confidence (number, required)

#### created\_at (string, required)

#### count (integer, required)

#### 401

Unauthorized

#### error (string, required)

#### status (integer, required)

#### Request

```bash cURL
curl -X GET 'https://api.rewind.rest/v1/admin/attending/pending' \
  -H 'Authorization: Bearer <token>'
```

```javascript JavaScript
const res = await fetch('https://api.rewind.rest/v1/admin/attending/pending', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer <token>',
  },
});
const data = await res.json();
```

```python Python
import requests

res = requests.get(
    'https://api.rewind.rest/v1/admin/attending/pending',
    headers={'Authorization': 'Bearer <token>'}
)
data = res.json()
```

#### Response

```json 200
{
  "data": [
    {
      "id": 0,
      "source_type": "string",
      "source_ref": "string",
      "raw_data": {},
      "match_confidence": 0,
      "created_at": "string"
    }
  ],
  "count": 0
}
```

```json 401
{
  "error": "Not found",
  "status": 404
}
```
