action loket_get_abp_funds_by_employment_id { label: "List of abp funds the employment partakes in" description: "__Activity name :__ GetAbpFundsByEmploymentId\n\nGet a list of the abp funds the employment partakes in.\n" provider: loket method: GET path: "/providers/employers/employees/employments/{employmentId}/abpfunds" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } employmentId: { type: "string" format: "uuid" } filter: { type: "string" } orderBy: { type: "string" } pageNumber: { type: "integer" format: "int32" } pageSize: { type: "integer" format: "int32" } } required: ["Accept", "Authorization", "employmentId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }