Skip to main content
https://.thoughtindustries.com

Extract

List award

List award

GEThttps://example.thoughtindustries.com/incoming/v2/events/award

Returns a paginated list of award events, optionally filtered by user, notifiable object, award kind, or date range.

Example request

curl "https://example.thoughtindustries.com/incoming/v2/events/award" \
  -H 'Authorization: Bearer YOUR_API_KEY'

Parameters

NameTypeRequiredLocationDescription
kindstringNoqueryFilters results to a specific award type.
cursorstringNoqueryOpaque cursor string used to fetch the next page of results.
startDateISO 8601 timestampNoqueryReturns only events on or after this ISO 8601 timestamp.
endDateISO 8601 timestampNoqueryReturns only events on or before this ISO 8601 timestamp.
notifiableIduuidNoqueryFilters results to events associated with the specified notifiable object.
userIduuidNoqueryFilters results to events belonging to the specified user.

Example response

{
  "data": {
    "APIEvents": {
      "pageInfo": {
        "perPage": 0,
        "cursor": "string",
        "total": 0,
        "hasMore": true
      },
      "events": [
        {}
      ]
    }
  }
}

Response fields

FieldTypeDescription
pageInfoCursorPageInfoPagination metadata for the current result set.
pageInfo.perPageintegerNumber of events returned per page.
pageInfo.cursorstringCursor value to pass in the next request to retrieve the following page.
pageInfo.totalintegerTotal number of award events matching the query.
pageInfo.hasMorebooleanIndicates whether additional pages of results are available.
eventsobject[]Array of award event objects matching the query.