action edrv_get_organization { label: "getOrganization" description: "Get one organization's data by id" provider: edrv method: GET path: "/v1/organizations/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } include_locations: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }