Skip to main content
Learn about the /reputations endpoint. Reputation objects contain information related to the performance metrics of the user within a particular payroll account. High level structure of the reputation object.

The reputation object

Attributes

  • id (string (uuid), optional): Unique ID of the reputation object associated with a user’s payroll account.
  • account (string (uuid), optional): ID of the payroll account associated with the reputation object.
  • employer (string, optional): The name of the company or entity that employs the user.
  • acceptance_rate (string, optional): Average acceptance rate. Supplied by the gig platform (usually between 0 and 1).
  • ontime_rate (string, optional): Average on-time rate. Supplied by the gig platform (usually between 0 and 1).
  • achievements (array of objects, optional): Various achievements returned by the gig platform. Can include url links to achievements, descriptions, points, or similar.
  • metadata (object, optional): Holds additional, often unstructured information about this data resource.

Retrieve a reputation

GET /v1/reputations/{id}
  • Retrieve a reputation object with the supplied ID.
  • This request returns a reputation object if you provided a valid identifier.

Path parameters

  • id (string (uuid), required): The identifier of the reputation to be retrieved.

List reputations

GET /v1/reputations
  • List all reputation objects.
  • This request returns an object with a results property that contains an array of up to limit reputation objects.

Query parameters