action configcat_get_integration_link_details { label: "Get Integration link" description: "" provider: configcat method: GET path: "/v1/integrationLink/{integrationLinkType}/{key}/details" encoding: json input: { type: "object" properties: { integrationLinkType: { type: "string" enum: ["trello", "jira", "monday"] } key: { type: "string" } } required: ["integrationLinkType", "key"] additionalProperties: false } output: { type: "object" properties: { allIntegrationLinkCount: { type: "integer" format: "int32" } details: { type: "array" items: { type: "object" properties: { config: { type: "object" properties: { configId: { type: "string" format: "uuid" } description: { type: "string" } name: { type: "string" } order: { type: "integer" format: "int32" } product: { type: "object" properties: { description: { type: "string" } name: { type: "string" } order: { type: "integer" format: "int32" } organization: { type: "object" properties: { name: { type: "string" } organizationId: { type: "string" format: "uuid" } } additionalProperties: false } productId: { type: "string" format: "uuid" } reasonRequired: { type: "boolean" } } additionalProperties: false } } additionalProperties: false } environment: { type: "object" properties: { color: { type: "string" } description: { type: "string" } environmentId: { type: "string" format: "uuid" } name: { type: "string" } order: { type: "integer" format: "int32" } product: { type: "object" additionalProperties: true } reasonRequired: { type: "boolean" } } additionalProperties: false } product: { type: "object" additionalProperties: true } readOnly: { type: "boolean" } setting: { type: "object" properties: { createdAt: { type: "string" format: "date-time" } creatorEmail: { type: "string" } creatorFullName: { type: "string" } hint: { type: "string" } isWatching: { type: "boolean" } key: { type: "string" } name: { type: "string" } order: { type: "integer" format: "int32" } settingId: { type: "integer" format: "int32" } settingType: { type: "string" enum: ["boolean", "string", "int", "double"] } } additionalProperties: false } status: { type: "string" } } additionalProperties: false } } } additionalProperties: false } }