v1

latestOpenAPI 3.1.02026-07-242735131.1 MB
Payroll Runs

Show Company Payroll Runs

Given an ID, shows a payroll run. employee_details field is deprecated in favour of the employee_details endpoint and will be removed in the future.

Scopes

CategoryRead only ScopeWrite only Scope (read access implicit)
Manage payroll runs (payroll)View payroll runs (payroll_run:read)-
get/v1/payroll-runs/{payroll_run_id}

Path parameters

payroll_run_idstring required

Payroll run ID

Response

Success

Example response

{
  "payroll_run": {
    "approval_date": "2021-01-15",
    "benefits_total": 1000,
    "country": {
      "alpha_2_code": "PT",
      "code": "PRT",
      "contractor_products_available": [
        "standard",
        "plus",
        "cor"
      ],
      "country_subdivisions": [
        {
          "code": "PT-06",
          "name": "Coimbra",
          "subdivision_type": "District"
        },
        {
          "code": "PT-11",
          "name": "Lisboa",
          "subdivision_type": "District"
        }
      ],
      "employment_agreement_preview_available": true,
      "eor_onboarding": true,
      "locked_benefits": "after_first_hire",
      "name": "Portugal",
      "region": "Europe",
      "subregion": "Southern Europe",
      "supported_json_schemas": [
        "additional_documents",
        "address_details",
        "administrative_details",
        "employment-basic-information",
        "bank_account_details",
        "contract_details",
        "emergency_contact"
      ]
    },
    "currency_code": "USD",
    "employee_details": [
      {
        "base_salary": {
          "amount": 1000,
          "currency": "USD"
        },
        "benefits": {
          "amount": 100,
          "currency": "USD"
        },
        "deductions": {
          "amount": 200,
          "currency": "USD"
        },
        "employer_costs": {
          "amount": 100,
          "currency": "USD"
        },
        "expenses": {
          "amount": 100,
          "currency": "USD"
        },
        "full_name": "John Doe",
        "gross_pay": {
          "amount": 1000,
          "currency": "USD"
        },
        "incentives": {
          "amount": 100,
          "currency": "USD"
        },
        "net_pay": {
          "amount": 800,
          "currency": "USD"
        },
        "other": {
          "amount": 100,
          "currency": "USD"
        },
        "payslip_id": "123e4567-e89b-12d3-a456-426614174000",
        "total_cost": {
          "amount": 1000,
          "currency": "USD"
        }
      }
    ],
    "employer_contributions_total": 1000,
    "expected_payout_date": "2021-01-25",
    "expenses_total": 1000,
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "incentives_total": 1000,
    "other_total": 1000,
    "period_end": "2021-01-31",
    "period_start": "2021-01-01",
    "salary_total": 1000,
    "status": "preparing",
    "total_payroll_cost": 1000
  }
}