latestOpenAPI 3.0.02026-08-1092038.0 KB

c0dcbcafc495

Gets the companies recognition feed

get/v1/recognition/feed

Query parameters

typestring[]

Type of post

privateboolean
hidden_from_leaderboardboolean
deletedboolean
minifyboolean

Get only minified user data. Only for 'text/csv' format

expandstring[]

Return each users' expanded data

cursornumber

Unix timestamp for next date range of feed entries

start-datestring date

Start Date of range to get data from as defined by RFC 3339, section 5.6, for example, 2017-07-21.

end-datestring date

End Date of range to get data from as defined by RFC 3339, section 5.6, for example, 2017-07-21. If defined, start-date is required.

all_timeboolean

Gets all time data with no pagination. Only keys with the AI_INSIGHT scope can use this.

Response

OK

status'success'

Example response

{
  "data": {
    "feed": [
      {
        "user": {
          "phone_number": "123-456-7890"
        },
        "receivers": [
          {
            "phone_number": "123-456-7890"
          }
        ],
        "comments": [
          {
            "sender": {
              "phone_number": "123-456-7890"
            }
          }
        ],
        "reactions": [
          {
            "user": {
              "phone_number": "123-456-7890"
            }
          }
        ]
      }
    ]
  }
}