v1

latestOpenAPI 3.1.02026-07-241642423.7 KB

List payments

get/payments

Query parameters

payrollstring

Return all payments, including debits and credits, related to a particular payroll ID

payroll_itemstring

Return payments related to a particular parent payroll_item ID

contractor_paymentstring

Return payments related to a particular parent contractor payment ID

companystring

Return payments related to a particular company ID

direction'credit' | 'debit'

Return payments with direction

amount_minstring

Return payments where amount ≥ an amount

amount_maxstring

Return payments where amount ≤ an amount

type'company_cash_requirement' | 'employee_net_pay' | 'net_pay_refund' | 'collection' | 'refund'

Return payments with type

completion_date_afterstring date

Return payments whose expected completion date is on or after the specified date

completion_date_beforestring date

Return payments whose expected completion date is on or before the specified date

limitinteger

Number of payments returned per page. The maximum value is 25.

Response

200

{"stackTrail":"paths:/payments:get:responses:200:content:application/json:schema:properties:next","oasType":"schema","type":"unknown"}
{"stackTrail":"paths:/payments:get:responses:200:content:application/json:schema:properties:previous","oasType":"schema","type":"unknown"}

Example response

{
  "results": [
    {
      "id": "pyt_uzasLBvddSm6aJkHGwQw",
      "status": "paid",
      "amount": "4522.0400",
      "type": "company_cash_requirement",
      "parent_type": "payroll",
      "parent_id": "pay_aPKCtxqbi1jDNEWRrz9w",
      "payment_attempts": [
        {
          "id": "pya_LUHvXtQBhkNM22xIk8K1",
          "created_at": "2022-02-18T20:17:13.033205Z",
          "expected_completion_date": "2022-02-23",
          "status": "paid",
          "payment_method": "ach",
          "payment_instrument": "bnk_W7hjDGn6sU1d3U8dr9bq",
          "ach_details": {
            "ach_trace_id": "ABC12300080",
            "description": "PAYMENT",
            "transaction_type_code": "PCR"
          }
        }
      ],
      "cancel_deadline": "2022-02-19T17:00:00.000Z",
      "direction": "debit",
      "company": "com_ENA4k8LMHbgpV07GLGSv"
    }
  ]
}