action id4i_create_new_api_key { label: "Create API key" description: "Creation of a new API key." provider: id4i method: POST path: "/api/v1/apikeys" encoding: json input: { type: "object" required: ["label", "organizationId", "secret"] properties: { label: { type: "string" } organizationId: { type: "string" } secret: { type: "string" } } } 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" } } } }