action id4i_find_organization { label: "Find organization by id/namespace" description: "Returns a single organization." provider: id4i method: GET path: "/api/v1/organizations/{organizationId}" encoding: json input: { type: "object" properties: { organizationId: { type: "string" } } required: ["organizationId"] additionalProperties: false } output: { type: "object" description: "An organization" required: ["name", "namespace"] properties: { id: { type: "integer" format: "int64" description: "The id of the organization ( Deprecated: Use namespace instead. )" } logoURL: { type: "string" description: "URL to a logo of the organization" } name: { type: "string" description: "The name of the organization" } namespace: { type: "string" description: "The namespace of the organization" } } } }