action intellifi_get_key_by_id { label: "Get key" description: "Can only be used by an **administrative** user." provider: intellifi method: GET path: "/keys/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { id: { type: "string" description: "Unique identifier for resource." } is_read_only: { type: "boolean" description: "Whether or not this key can only read and not write." } label: { type: "string" description: "Custom label for this API key." } secret: { type: "string" description: "The secret token for authentication." } time_created: { type: "string" format: "dateTime" description: "[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) formatted string for when this resource was created." } time_updated: { type: "string" format: "dateTime" description: "[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) formatted string for when this resource was updated." } url: { type: "string" description: "Url to the individual resource." } } } }