# Links

**self** string

URL to the object or collection of objects.

**Example:** `https://api.bookkeep.com/v1/notifications`

**current** stringnullable

URL to the current page of objects. This property is only returned when fetching a collection of objects.

**Example:** `https://api.bookkeep.com/v1/notifications?page[number]=1&page[size]=10`

**next** stringnullable

URL to the next page of notifications. This property is only returned when fetching a collection of objects a next page is available.

**last** stringnullable

URL to the last page of notifications. This property is only returned when fetching a collection of objects a next page is available.

Links

```json
{
  "self": "https://api.bookkeep.com/v1/notifications",
  "current": "https://api.bookkeep.com/v1/notifications?page[number]=1&page[size]=10",
  "next": "string",
  "last": "string"
}
```
