action loket_get_partner_by_partner_id { label: "Details of a single partner" description: "__Activity name :__ GetPartnerByPartnerId\n\nGet the details of a single partner\n" provider: loket method: GET path: "/providers/employers/employees/partners/{partnerId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } Authorization: { type: "string" } partnerId: { type: "string" format: "uuid" } } required: ["Accept", "Authorization", "partnerId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }