action id4i_list_organization_change_log { label: "List change log entries of an organization" description: "Listing change log entries of the specified organization id." provider: id4i method: GET path: "/api/v1/changelog/organization/{organizationId}/" encoding: json input: { type: "object" properties: { fromDate: { type: "string" format: "date-time" } limit: { type: "integer" format: "int32" } messageMimeType: { type: "string" } offset: { type: "integer" format: "int32" } organizationId: { type: "string" } toDate: { type: "string" format: "date-time" } } required: ["organizationId"] additionalProperties: false } output: { type: "object" required: ["elements", "limit", "offset"] properties: { elements: { type: "array" items: { type: "object" description: "A changelog entry" properties: { id: { type: "string" description: "The unique id of the changelog entry" } message: { type: "string" description: "The message as template or rendered as plain text" } messageProperties: { type: "object" description: "The values of the properties in the message. May be nested as object with a value field " } timestamp: { type: "integer" format: "int64" description: "The UTC unix timestamp when this change occurred" } } } } limit: { type: "integer" format: "int32" description: "The number of returned elements" } offset: { type: "integer" format: "int32" description: "Starting with the n-th element" } total: { type: "integer" format: "int32" description: "The total number of elements" } } } }