Get details of cla salary configs

GET /api-v1/payslip/cla-lines

Headers

  • TARGET-ORGANIZATION-ID integer(int32)

    ID of organization, for which the operation must be performed

  • WEAL-TOKEN string Required

    API token (can be retrieved from account settings)

Query parameters

  • countryId integer Required

    countryId

Responses

  • 200 */*

    OK

    Hide response attributes Show response attributes object
    • claContributionTableLines object
      Hide claContributionTableLines attribute Show claContributionTableLines attribute object
      • * array[object] Additional properties
        Hide * attributes Show * attributes object
        • calendarYear integer(int32)
        • description object
          Hide description attributes Show description attributes object
          • de string
          • en string
          • fr string
          • it string
        • id integer
        • isAutomaticallyAdded boolean
        • isHourlyWageLine boolean
        • number integer
        • payslipEntityId integer
        • systemLine object
          Hide systemLine attributes Show systemLine attributes object
          • id integer
          • payslipLineType string Discriminator
          • systemAdjustmentLineNumber integer
    • claSalaryTableLines object
      Hide claSalaryTableLines attribute Show claSalaryTableLines attribute object
      • * array[object] Additional properties
        Hide * attributes Show * attributes object
        • calendarYear integer(int32)
        • description object
          Hide description attributes Show description attributes object
          • de string
          • en string
          • fr string
          • it string
        • id integer
        • isAutomaticallyAdded boolean
        • isHourlyWageLine boolean
        • number integer
        • payslipEntityId integer
        • systemLine object
          Hide systemLine attributes Show systemLine attributes object
          • id integer
          • payslipLineType string Discriminator
          • systemAdjustmentLineNumber integer
  • 400

    400 Bad Request

  • 401

    401 Unauthorized

  • 403

    403 Access Denied

  • 404

    404 Not Found

  • 500

    500 Internal Server Error

GET /api-v1/payslip/cla-lines
curl \
 --request GET 'https://wyzio.app/api-v1/payslip/cla-lines?countryId=42' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "claContributionTableLines": {
    "additionalProperty1": [
      {
        "calendarYear": 42,
        "description": {
          "de": "string",
          "en": "string",
          "fr": "string",
          "it": "string"
        },
        "id": 42,
        "isAutomaticallyAdded": true,
        "isHourlyWageLine": true,
        "number": 42,
        "payslipEntityId": 42,
        "systemLine": {
          "id": 42,
          "payslipLineType": "string",
          "systemAdjustmentLineNumber": 42
        }
      }
    ],
    "additionalProperty2": [
      {
        "calendarYear": 42,
        "description": {
          "de": "string",
          "en": "string",
          "fr": "string",
          "it": "string"
        },
        "id": 42,
        "isAutomaticallyAdded": true,
        "isHourlyWageLine": true,
        "number": 42,
        "payslipEntityId": 42,
        "systemLine": {
          "id": 42,
          "payslipLineType": "string",
          "systemAdjustmentLineNumber": 42
        }
      }
    ]
  },
  "claSalaryTableLines": {
    "additionalProperty1": [
      {
        "calendarYear": 42,
        "description": {
          "de": "string",
          "en": "string",
          "fr": "string",
          "it": "string"
        },
        "id": 42,
        "isAutomaticallyAdded": true,
        "isHourlyWageLine": true,
        "number": 42,
        "payslipEntityId": 42,
        "systemLine": {
          "id": 42,
          "payslipLineType": "string",
          "systemAdjustmentLineNumber": 42
        }
      }
    ],
    "additionalProperty2": [
      {
        "calendarYear": 42,
        "description": {
          "de": "string",
          "en": "string",
          "fr": "string",
          "it": "string"
        },
        "id": 42,
        "isAutomaticallyAdded": true,
        "isHourlyWageLine": true,
        "number": 42,
        "payslipEntityId": 42,
        "systemLine": {
          "id": 42,
          "payslipLineType": "string",
          "systemAdjustmentLineNumber": 42
        }
      }
    ]
  }
}