action configcat_post_v1_code_references_delete_reports { label: "post_v1_code_references_delete_reports" provider: configcat method: POST path: "/v1/code-references/delete-reports" encoding: json input: { type: "object" required: ["configId", "repository"] properties: { branch: { type: "string" description: "If it's set, only this branch's reports belonging to the given repository will be deleted." } configId: { type: "string" format: "uuid" description: "The Config's identifier from where the reports should be deleted." } repository: { type: "string" description: "The source control repository which's reports should be deleted." } settingId: { type: "integer" format: "int32" description: "If it's set, only this setting's reports belonging to the given repository will be deleted." } } additionalProperties: false } output: { type: "object" additionalProperties: true } }