action id4i_find_organization_address { label: "Retrieve address" provider: id4i method: GET path: "/api/v1/organizations/{organizationId}/addresses/default" encoding: json input: { type: "object" properties: { organizationId: { type: "string" } } required: ["organizationId"] additionalProperties: false } output: { type: "object" required: ["city", "countryCode", "firstname", "lastname", "postCode", "street"] properties: { city: { type: "string" } companyName: { type: "string" } countryCode: { type: "string" description: "The ISO 3166 two-letter country code" } countryName: { type: "string" description: "The country name" } firstname: { type: "string" } lastname: { type: "string" } postCode: { type: "string" } street: { type: "string" } telephone: { type: "string" description: "The telephone number e.g." } } } }