action configcat_get_organization_auditlogs { label: "List Audit log items for Organization" description: "This endpoint returns the list of Audit log items for a given Organization \nand the result can be optionally filtered by Product and/or Config and/or Environment." provider: configcat method: GET path: "/v1/organizations/{organizationId}/auditlogs" encoding: json input: { type: "object" properties: { auditLogType: { type: "object" } configId: { type: "string" format: "uuid" } environmentId: { type: "string" format: "uuid" } fromUtcDateTime: { type: "string" format: "date-time" } organizationId: { type: "string" format: "uuid" } productId: { type: "string" format: "uuid" } toUtcDateTime: { type: "string" format: "date-time" } } required: ["organizationId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { actionTarget: { type: "string" } auditLogDateTime: { type: "string" format: "date-time" } auditLogId: { type: "integer" format: "int64" } auditLogType: { type: "string" } auditLogTypeEnum: { type: "string" enum: ["productCreated", "productChanged", "productOwnershipTransferred", "productDeleted", "productsReordered", "teamMemberInvited", "teamMemberInvitationRevoked", "teamMemberJoined", "teamMemberPermissionGroupChanged", "teamMemberRemoved", "teamMemberLeft", "teamMemberInvitationChanged", "teamMemberInvitationResent", "teamMemberInvitationRejected", "configCreated", "configChanged", "configDeleted", "configsReordered", "environmentCreated", "environmentChanged", "environmentDeleted", "environmentsReordered", "settingCreated", "settingChanged", "settingDeleted", "settingsReordered", "settingValueChanged", "webHookCreated", "webHookChanged", "webHookDeleted", "subscriptionChanged", "permissionGroupCreated", "permissionGroupChanged", "permissionGroupDeleted", "permissionGroupDefault", "apiKeyAdded", "apiKeyRemoved", "integrationAdded", "integrationChanged", "integrationRemoved", "apiKeyConnected", "integrationLinkAdded", "integrationLinkRemoved", "organizationAdded", "organizationRemoved", "organizationChanged", "organizationSubscriptionTypeChanged", "organizationAdminChanged", "organizationAdminLeft", "organizationAdminDisabled2FA", "tagAdded", "tagChanged", "tagRemoved", "settingTagAdded", "settingTagRemoved", "publicApiAccessTokenAdded", "publicApiAccessTokenRemoved", "domainAdded", "domainVerified", "domainRemoved", "domainSamlConfigured", "domainSamlDeleted", "autoProvisioningConfigurationChanged", "organizationMemberJoined", "organizationMemberProductJoinRequested", "organizationMemberProductJoinRequestRejected", "organizationMemberProductJoinRequestApproved", "codeReferencesUploaded", "codeReferenceDeleted", "codeReferenceStaleBranchDeleted", "segmentCreated", "segmentChanged", "segmentDeleted", "webhookSigningKeyDeleted", "webhookSigningKeyCreated"] } details: { type: "string" } userEmail: { type: "string" } userName: { type: "string" } where: { type: "string" } why: { type: "string" } } additionalProperties: false } } }