POST
/
employer
/
pay-statement
curl --request POST \
  --url https://api.tryfinch.com/employer/pay-statement \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: <content-type>' \
  --header 'Finch-API-Version: <finch-api-version>'
{
  "responses": [
    {
      "payment_id": "fc8b024e-d373-4c9c-80fc-f1625383d142",
      "code": 200,
      "body": {
        "paging": {
          "count": 25,
          "offset": 10
        },
        "pay_statements": [
          {
            "individual_id": "be7b048c-a6f3-4194-a017-2f537d4f3565",
            "type": "regular",
            "payment_method": "check",
            "total_hours": 42.5,
            "gross_pay": {
              "amount": 230000,
              "currency": "usd"
            },
            "net_pay": {
              "amount": 180000,
              "currency": "usd"
            },
            "earnings": [
              {
                "type": "salary",
                "name": "Salary",
                "amount": 230000,
                "currency": "usd",
                "hours": 42.5
              }
            ],
            "taxes": [
              {
                "type": "state",
                "name": "State Withholding - OR",
                "employer": false,
                "amount": 0,
                "currency": "usd"
              }
            ],
            "employee_deductions": [
              {
                "name": "Pre-Tax 401k",
                "amount": 50000,
                "currency": "usd",
                "pre_tax": true,
                "type": "401k"
              }
            ],
            "employer_contributions": [
              {
                "name": "Employee Medical Insurance",
                "amount": 23272,
                "currency": "usd"
              }
            ]
          }
        ]
      }
    }
  ]
}

Authorizations

Authorization
string
headerrequired

Please use your Access Token

Headers

Finch-API-Version
string
default: 2020-09-17required

Header used to specify the version for a given API request. Current version is 2020-09-17.

Content-Type
string
default: application/jsonrequired

Used to indicate the original media type of the resource

Body

application/json
requests
object[]
required

The array of batch requests.

Response

200 - application/json
responses
object[]