Get given likes

Get messages you liked.

Method

GET

URL

https://typetalk.com/api/v1/spaces/:spaceKey/likes/give

Scope

my

URL parameters

Name Type Description
spaceKey String Space key

Query parameters

Name Type Description
from (Optional) Number references Like ID

Response Example

{
  "likedPosts": [
    {
      "post": {
        "id": 309,
        "topicId": 203,
        "replyTo": null,
        "message": "@jessica Help me!",
        "account": {
          "id": 102,
          "name": "moss",
          "fullName": "Moss",
          "suggestion": "Moss",
          "imageUrl": "https://typetalk.com/accounts/102/profile_image.png?t=1403749949000",
          "isBot": false,
          "createdAt": "2014-06-26T02:32:29Z",
          "updatedAt": "2014-06-26T02:32:29Z"
        },
        "attachments": [],
        "likes": [
          {
            "id": 605,
            "postId": 309,
            "topicId": 203,
            "comment": "",
            "account": {
              "id": 100,
              "name": "jessica",
              "fullName": "Jessica Fitzherbert",
              "suggestion": "Jessica Fitzherbert",
              "imageUrl": "https://typetalk.com/accounts/100/profile_image.png?t=1403577149000",
              "isBot": false,
              "createdAt": "2014-06-24T02:32:29Z",
              "updatedAt": "2014-06-24T02:32:29Z"
            },
            "createdAt": "2016-12-21T10:12:06Z"
          }
        ],
        "talks": [],
        "links": [],
        "createdAt": "2014-07-02T03:32:29Z",
        "updatedAt": "2014-07-02T03:32:29Z"
      },
      "myLike": {
        "id": 605,
        "comment": "",
        "createdAt": "2016-12-21T10:12:06Z"
      },
      "topic": {
        "id": 203,
        "name": "Techies",
        "description": "",
        "suggestion": "Techies",
        "isDirectMessage": false,
        "lastPostedAt": "2014-06-30T02:32:29Z",
        "createdAt": "2014-06-05T02:32:29Z",
        "updatedAt": "2014-06-05T02:32:29Z"
      },
      "directMessage": null
    },
    {
      "post": {
        "id": 308,
        "topicId": 202,
        "replyTo": null,
        "message": "@jessica What do you think about this?",
        "account": {
          "id": 101,
          "name": "ahorowitz",
          "fullName": "AHorowitz",
          "suggestion": "AHorowitz",
          "imageUrl": "https://typetalk.com/accounts/101/profile_image.png?t=1403663549000",
          "isBot": false,
          "createdAt": "2014-06-25T02:32:29Z",
          "updatedAt": "2014-06-25T02:32:29Z"
        },
        "attachments": [],
        "likes": [
          {
            "id": 604,
            "postId": 308,
            "topicId": 202,
            "comment": "",
            "account": {
              "id": 100,
              "name": "jessica",
              "fullName": "Jessica Fitzherbert",
              "suggestion": "Jessica Fitzherbert",
              "imageUrl": "https://typetalk.com/accounts/100/profile_image.png?t=1403577149000",
              "isBot": false,
              "createdAt": "2014-06-24T02:32:29Z",
              "updatedAt": "2014-06-24T02:32:29Z"
            },
            "createdAt": "2016-12-21T10:12:06Z"
          }
        ],
        "links": [],
        "talks": [],
        "createdAt": "2014-07-01T03:32:29Z",
        "updatedAt": "2014-07-01T03:32:29Z"
      },
      "myLike": {
        "id": 604,
        "comment": "",
        "createdAt": "2016-12-21T10:12:06Z"
      },
      "topic": {
        "id": 202,
        "name": "Arts & Crafts Club",
        "description": "",
        "suggestion": "Arts & Crafts Club",
        "isDirectMessage": false,
        "lastPostedAt": "2014-06-30T02:32:29Z",
        "createdAt": "2014-06-04T02:32:29Z",
        "updatedAt": "2014-06-04T02:32:29Z"
      },
      "directMessage": null
    }
  ]
}

All responses are formatted in JSON and include an ETag. If you call an API with an If-None-Match header, the server will return a 304 status code if the data is unchanged. The date and time format is ISO 8601, and the timezone is UTC (eg. 2014-01-09T06:20:08Z).