GET
/
germany
/
wage-types
/
{wage_type_number}
Get Wage Type By Number
curl --request GET \
  --url https://api.example.com/germany/wage-types/{wage_type_number} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "wageTypeNumber": 123,
  "name": "<string>",
  "isTotalGrossComponent": true,
  "componentType": "gross_earning",
  "taxTreatment": "recurring_wage",
  "taxCertificateLineItem": "<string>",
  "socialSecurityTreatment": "recurring_wage",
  "isSvRelevantComponent": true,
  "isReimbursableAag": true,
  "isAccidentInsuranceRelevant": true,
  "isGlComponent": true,
  "isAverageEarningsComponent": true,
  "garnishmentTreatment": "full",
  "isMinimumWageComponent": true,
  "validFrom": "2023-12-25",
  "validTo": "2023-12-25"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

wage_type_number
integer
required

Response

Successful Response

Response schema for German wage type

id
integer
required

Database ID

wageTypeNumber
integer
required

The business key of the wage type

name
string
required

The name of the wage type

isTotalGrossComponent
boolean
required

Component of the total gross (Gesamtbrutto)

componentType
enum<string>
required

The component type

Available options:
gross_earning,
gross_deduction,
net_earning,
net_deduction
taxTreatment
enum<string>
required

The tax treatment

Available options:
recurring_wage,
one_time_payment,
flat_rate_tax,
tax_free
taxCertificateLineItem
string | null
required

Tax certificate line item

socialSecurityTreatment
enum<string>
required

The social security treatment

Available options:
recurring_wage,
one_time_payment,
social_security_free
isSvRelevantComponent
boolean
required

Component of Arbeitsentgelt

isReimbursableAag
boolean
required

Reimbursable under AAG

isAccidentInsuranceRelevant
boolean
required

Relevant for accident insurance

isGlComponent
boolean
required

Component of base wage

isAverageEarningsComponent
boolean
required

Component of average earnings

garnishmentTreatment
enum<string>
required

Garnishment treatment

Available options:
full,
non_garnishable,
partial
isMinimumWageComponent
boolean
required

Component of minimum wage

validFrom
string<date> | null
validTo
string<date> | null