action id4i_list_all_api_keys_of_organization { label: "Find API key by organization" description: "Finding all API key assigned to the specified organization in a paginated manner." provider: id4i method: GET path: "/api/v1/apikeys" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } organizationId: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["elements", "limit", "offset"] properties: { elements: { type: "array" items: { type: "object" required: ["active", "createdAt", "createdBy", "key", "label", "organizationId"] properties: { active: { type: "boolean" description: "Whether this API key is active" } createdAt: { type: "integer" format: "int64" description: "The UTC unix timestamp of when this api key has been created" } createdBy: { type: "string" } key: { type: "string" description: "The api key identifier" } label: { type: "string" description: "The label / name of the api key" } organizationId: { type: "string" description: "The organization namespace this api key belongs to" } } } } 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" } } } }