GET
/
worksites
/
{worksite_id}
/
insurance-data
Get Worksite Insurance Data
curl --request GET \
  --url https://sandbox.intermezzo.ai/worksites/{worksite_id}/insurance-data \
  --header 'Authorization: Bearer <token>'
[
  {
    "validFrom": "2023-12-25",
    "validTo": "2023-12-25",
    "worksiteLocationNumber": "<string>",
    "accidentInsuranceCompanyNumber": "<string>",
    "accidentInsurancePin": "<string>",
    "payrollServiceProviderNumber": "<string>",
    "payrollProcessingLocationNumber": "<string>",
    "id": 123
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

worksite_id
string
required

TypeID with prefix 'wst'

Example:

"wst_01h455vb4pex5vsknk084sn02q"

Response

200
application/json

Successful Response

The response is of type WorksiteInsuranceDataResponse · object[].