action id4i_get_api_key { label: "Show API key" description: "Showing the details of an API key." provider: id4i method: GET path: "/api/v1/apikeys/{key}" encoding: json input: { type: "object" properties: { key: { type: "string" } } required: ["key"] additionalProperties: false } output: { 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" } } } }