> For the complete documentation index, see [llms.txt](https://docs.ok-sky.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ok-sky.com/resources-api/resources-object/trackerentry-object.md).

# TrackerEntry object

## Fields

| Field      | Type    | Description | Editable |
| ---------- | ------- | ----------- | -------- |
| time\_unix | integer |             |          |
| payload    | object  |             |          |
| user\_uuid | string  |             |          |
| t          | integer |             |          |
| ua         | string  |             |          |
| p          | string  |             |          |
| r          | string  |             |          |
| l          | string  |             |          |
| tz         | string  |             |          |

## Filters

| Field      | Description |
| ---------- | ----------- |
| id         | ID          |
| user\_uuid |             |

[![Run in Postman](https://run.pstmn.io/button.svg)](https://app.getpostman.com/run-collection/123e52529e9ffdabe8cb)

## search tracker entries

<mark style="color:blue;">`GET`</mark> `https://{YOUR_OKSKY_DOMAIN}/rapi/v1/tracker_entries`

#### Headers

| Name           | Type   | Description              |
| -------------- | ------ | ------------------------ |
| X-Access-Token | string | set you access token     |
| Content-Type   | string | application/vnd.api+json |
| Accept         | string | application/vnd.api+json |

{% tabs %}
{% tab title="200 " %}

```
{
  "data": [
    {
      "id": "1",
      "type": "tracker_entries",
      "links": {
        "self": "https://{YOUR_OKSKY_DOMAIN}/rapi/v1/tracker_entries/1"
      },
      "attributes": {
        "time_unix": 1542602846,
        "payload": {
          "ua": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36",
          "p": "MacIntel",
          "r": "",
          "l": "https://{YOUR_OKSKY_DOMAIN}/clients/1/test",
          "t": 1542602846433,
          "tz": "Asia/Tokyo"
        },
        "user_uuid": "93ac8829-55c4-43bf-ae8c-a3c646110765",
        "t": 1542602846433,
        "ua": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36",
        "p": "MacIntel",
        "r": "",
        "l": "https://{YOUR_OKSKY_DOMAIN}/clients/1/test",
        "tz": "Asia/Tokyo"
      }
    }
  ],
  "meta": {
    "record_count": 1
  },
  "links": {
    "first": "https://{YOUR_OKSKY_DOMAIN}/rapi/v1/tracker_entries?page%5Bnumber%5D=1&page%5Bsize%5D=25",
    "last": "https://{YOUR_OKSKY_DOMAIN}/rapi/v1/tracker_entries?page%5Bnumber%5D=1&page%5Bsize%5D=25"
  }
}
```

{% endtab %}
{% endtabs %}

## latest for user uuid

<mark style="color:blue;">`GET`</mark> `https://{YOUR_OKSKY_DOMAIN}/rapi/v1/tracker_entries/latest_for_user_uuid`

#### Headers

| Name           | Type   | Description              |
| -------------- | ------ | ------------------------ |
| X-Access-Token | string | set you access token     |
| Content-Type   | string | application/vnd.api+json |
| Accept         | string | application/vnd.api+json |

{% tabs %}
{% tab title="200 " %}

```
{
  "data": {
    "id": "1",
    "type": "tracker_entries",
    "links": {
      "self": "https://{YOUR_OKSKY_DOMAIN}/rapi/v1/tracker_entries/1"
    },
    "attributes": {
      "time_unix": 1542602846,
      "payload": {
        "ua": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36",
        "p": "MacIntel",
        "r": "",
        "l": "https://{YOUR_OKSKY_DOMAIN}/clients/1/test",
        "t": 1542602846433,
        "tz": "Asia/Tokyo"
      },
      "user_uuid": "93ac8829-55c4-43bf-ae8c-a3c646110765",
      "t": 1542602846433,
      "ua": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36",
      "p": "MacIntel",
      "r": "",
      "l": "https://{YOUR_OKSKY_DOMAIN}/clients/1/test",
      "tz": "Asia/Tokyo"
    }
  }
}
```

{% endtab %}
{% endtabs %}
