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