action truora_get_v1_continuous_checks_continuous_check_id_history { label: "get_v1_continuous_checks_continuous_check_id_history" description: "Lists background check logs. It can be paginated \n" provider: truora method: GET path: "/v1/continuous-checks/{continuous_check_id}/history" encoding: json input: { type: "object" properties: { continuous_check_id: { type: "string" } } required: ["continuous_check_id"] additionalProperties: false } output: { type: "object" description: "GetContiuousCheckHistoryOutput" required: ["history"] properties: { history: { type: "array" description: "List of background check changelogs" items: { type: "object" description: "Represents changes in check scores between continuous checks" properties: { dataset_score_changes: { type: "number" description: "Old and new score map by dataset" } score_changes: { type: "array" description: "Old and new score list" items: { type: "object" additionalProperties: true } } } } } next: { type: "string" description: "Next page URL" } self: { type: "string" description: "Current page URL" } } } }