action xtrf_get_address { label: "Returns address of a given client." description: "Returns address of a given client." provider: xtrf method: GET path: "/customers/{customerId}/address" encoding: json input: { type: "object" properties: { customerId: { type: "integer" format: "int64" } } required: ["customerId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }