Skip to main content
GET
/
worksites
/
{worksite_id}
/
insurance-details
Get Worksite Insurance Details
curl --request GET \
  --url https://sandbox.intermezzo.ai/worksites/{worksite_id}/insurance-details \
  --header 'Authorization: Bearer <token>'
[
  {
    "validFrom": "2023-12-25",
    "validTo": "2023-12-25",
    "insuranceCountry": "DE",
    "worksiteLocationNumber": "98797889",
    "accidentInsuranceCompanyNumber": "98797889",
    "accidentInsurancePin": "DE-WS-PIN-456",
    "payrollServiceProviderNumber": "98797889",
    "payrollProcessingLocationNumber": "98797889",
    "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
required

Response

Successful Response

id
integer
required
validFrom
string<date> | null
validTo
string<date> | null
insuranceCountry
string
default:DE
Allowed value: "DE"
worksiteLocationNumber
string | null

DE: BBNRVU German Betriebsnummer (8 digits: xxx-yyyy-z format)

Examples:

"98797889"

"15186676"

"99302952"

accidentInsuranceCompanyNumber
string | null

DE: BBNR UV German Betriebsnummer (8 digits: xxx-yyyy-z format)

Examples:

"98797889"

"15186676"

"99302952"

accidentInsurancePin
string | null

DE: UV PIN German accident insurance PIN (5 digits)

Examples:

"12345"

"56789"

"98765"

payrollServiceProviderNumber
string | null

DE: BBNR AS German Betriebsnummer (8 digits: xxx-yyyy-z format)

Examples:

"98797889"

"15186676"

"99302952"

payrollProcessingLocationNumber
string | null

DE: BBNR LB German Betriebsnummer (8 digits: xxx-yyyy-z format)

Examples:

"98797889"

"15186676"

"99302952"

I