Skip to content

Retrieve events feed

Onur Akpolat edited this page Nov 4, 2016 · 1 revision

Endpoint

GET https://api.tapglue.com/0.4/me/feed/events

Example

curl https://api.tapglue.com/0.4/me/feed/events \
    -u APP_TOKEN:SESSION_TOKEN \
    -H "User-Agent: Tapglue Test UA" \
    -H 'Accept: application/json'

Response

{
  "events": [
    {
      "id_string": "19144064297340516",
      "user_id_string": "19136842595045509",
      "id": 19144064297340516,
      "user_id": 19136842595045508,
      "type": "bookmark",
      "visibility": 30,
      "object": {
        "id": "picture_345",
        "type": "picture",
        "display_names": {
          "de": "Bild 1",
          "en": "Picture 1"
        }
      },
      "owned": false,
      "created_at": "2016-01-10T19:46:11.524603962Z",
      "updated_at": "2016-01-10T19:46:11.524603962Z",
      "enabled": true
    },
    {
      "id_string": "19144055069872261",
      "user_id_string": "19136842595045509",
      "id": 19144055069872260,
      "user_id": 19136842595045508,
      "type": "bookmark",
      "visibility": 20,
      "object": {
        "id": "picture_123",
        "type": "picture",
        "display_names": {
          "de": "Bild 1",
          "en": "Picture 1"
        }
      },
      "owned": false,
      "created_at": "2016-01-10T19:46:06.025570517Z",
      "updated_at": "2016-01-10T19:46:06.025570517Z",
      "enabled": true
    }
  ],
  "events_count": 2,
  "users": {
    "19136842595045509": {
      "id_string": "19136842595045509",
      "id": 19136842595045508,
      "custom_id": "1",
      "social_ids": {
        "facebook": "fb12345678"
      },
      "user_name": "Cruz",
      "first_name": "Cruz",
      "last_name": "Karyn",
      "email": "[email protected]",
      "url": "myapp://users/1",
      "metadata": {
        "foo": "bar"
      },
      "images": {
        "avatar": {
          "url": "https://mydomain.com/users/1/avatar.jpg",
          "width": 400,
          "height": 400
        },
        "avatar_thumb": {
          "url": "https://mydomain.com/users/1/avatar_thumb.jpg",
          "width": 150,
          "height": 150
        }
      },
      "enabled": true
    }
  },
  "users_count": 1
}
Clone this wiki locally