Skip to main content
POST
/
organizations
/
{organization_id}
/
insurance-details
Create Organization Insurance Details
curl --request POST \
  --url https://sandbox.intermezzo.ai/organizations/{organization_id}/insurance-details \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "validFrom": "2023-12-25",
  "validTo": "2023-12-25",
  "insuranceCountry": "DE",
  "companyNumber": "98797889",
  "unrs": "DE987654321",
  "accidentInsuranceCompanyNumber": "98797889",
  "accidentInsurancePin": "12345",
  "payrollServiceProviderNumber": "98797889",
  "payrollProcessingLocationNumber": "98797889",
  "economicSector": 1,
  "u1Selected": false,
  "u2Selected": false,
  "u3Selected": false,
  "agencyId": "<string>",
  "alternateAgencyId": "<string>",
  "contactId": "<string>"
}'
{
  "validFrom": "2023-12-25",
  "validTo": "2023-12-25",
  "insuranceCountry": "DE",
  "companyNumber": "98797889",
  "unrs": "DE987654321",
  "accidentInsuranceCompanyNumber": "98797889",
  "accidentInsurancePin": "12345",
  "payrollServiceProviderNumber": "98797889",
  "payrollProcessingLocationNumber": "98797889",
  "economicSector": 1,
  "u1Selected": false,
  "u2Selected": false,
  "u3Selected": false,
  "agencyId": "<string>",
  "alternateAgencyId": "<string>",
  "contactId": "<string>",
  "id": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

organization_id
required

Body

application/json
validFrom
string<date> | null
validTo
string<date> | null
insuranceCountry
string
default:DE
Allowed value: "DE"
companyNumber
string | null

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

Examples:

"98797889"

"15186676"

"99302952"

unrs
string | null

DE: UNRS German UNR.S (15 digits: company number + check digit + identifier)

Examples:

"031041220222001"

"029057320227001"

"018552220224001"

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: BBNRAS 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"

economicSector
enum<integer> | null

DE: Wirtschaftssektor Wirtschaftssektor (Economic Sector) enumeration for German organizations.

Available options:
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22
u1Selected
boolean
default:false
u2Selected
boolean
default:false
u3Selected
boolean
default:false
agencyId
string | null
alternateAgencyId
string | null
contactId

Response

Successful Response

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

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

Examples:

"98797889"

"15186676"

"99302952"

unrs
string | null

DE: UNRS German UNR.S (15 digits: company number + check digit + identifier)

Examples:

"031041220222001"

"029057320227001"

"018552220224001"

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: BBNRAS 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"

economicSector
enum<integer> | null

DE: Wirtschaftssektor Wirtschaftssektor (Economic Sector) enumeration for German organizations.

Available options:
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22
u1Selected
boolean
default:false
u2Selected
boolean
default:false
u3Selected
boolean
default:false
agencyId
string | null
alternateAgencyId
string | null
contactId
string | null
I