Usage of badges/{id}

Discussion

Gets the recipients of a the badges identified in id, most recent recipients first.

Note that badge ids are not constant across sites, and thus should be looked up via the /badges method. A badge id on a single site is, however, guaranteed to be stable.

If you're trying to find recipients in a given date range (or, equivalently, polling for recipients since the time of your last poll) use the fromdate and todate parameters.


Parameters

  • id – A single primary key identifier or a vectorized, semicolon-delimited list of identifiers.
    • This is a vectorized parameter, multiple ids can be sent a single request if delimited with a semi-colon
    • string
  • fromdate – Unix timestamp of the minimum creation date on a returned item.
    • unix epoch date, range [0, 253,402,300,799]
  • page – The pagination offset for the current collection. Affected by the specified pagesize.
    • 32-bit signed integer
  • pagesize – The number of collection results to display during pagination. Should be between 0 and 100 inclusive.
    • 32-bit signed integer
  • todate – Unix timestamp of the maximum creation date on a returned item.
    • unix epoch date, range [0, 253,402,300,799]

Try it