action truora_list_score_configs { label: "List Score Configurations" description: "Lists the custom score configurations of the associated account." provider: truora method: GET path: "/v1/config" encoding: json input: { type: "object" properties: { start_key: { type: "string" } } additionalProperties: false } output: { type: "object" description: "The result of an operation that returns multiple score configs" required: ["score_configs"] properties: { score_configs: { type: "array" description: "The list of score configs" items: { type: "object" description: "Represents a list of score configurations that apply in the country" properties: { ScoreConfigByCountry: { type: "array" description: "List of score configs that apply for the country" items: { type: "object" description: "Represents a set of configurations to determine the background check score" required: ["data_set", "weight"] properties: { data_set: { type: "string" description: "Background check dataset" } weight: { type: "string" description: "Dataset weight for score calculation" } } } } } } } } } }