action xtrf_get_contact { label: "Returns contact of a given person." description: "Returns contact of a given person." provider: xtrf method: GET path: "/customers/persons/{personId}/contact" encoding: json input: { type: "object" properties: { personId: { type: "integer" format: "int64" } } required: ["personId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }