Skip to main content
Learn about the /payouts endpoint. payouts are machine-readable, normalized versions of traditional paystubs. Each payout object corresponds to a single paystub that is available in a user’s payroll account. High level structure of the payout object.

The payout object

Argyle does not calculate YTD values. All YTD values are as they appear on the user’s paystubs.

Attributes

  • id (string (uuid), optional): Unique ID for this payout.
  • payout_period (object, optional)
  • overtime *DEPRECATED (string, optional)
  • bonuses *DEPRECATED (string, optional)
  • commission *DEPRECATED (string, optional)

Retrieve a payout

GET /v1/payouts/{id}
  • Retrieve a payout object with the supplied ID.
  • This request returns a payout object if a valid identifier was provided.

Path parameters

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

List payouts

GET /v1/payouts
  • List all payouts ordered by payout_date, from newest to oldest.
  • This request returns an object with a results property that contains an array of up to limit payout objects.

Query parameters