action id4i_get_partner_organizations { label: "Get partners of an organization" description: "Listing partners in a paginated manner." provider: id4i method: GET path: "/api/v1/organizations/{organizationId}/partner" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } organizationId: { type: "string" } } required: ["organizationId"] additionalProperties: false } output: { type: "object" required: ["elements", "limit", "offset"] properties: { elements: { type: "array" items: { type: "object" description: "A partner organization" properties: { 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" } } } } limit: { type: "integer" format: "int32" description: "The number of returned elements" } offset: { type: "integer" format: "int32" description: "Starting with the n-th element" } total: { type: "integer" format: "int32" description: "The total number of elements" } } } }