action flat_get_user_scores { label: "List user's scores" description: "Get the list of public scores owned by a User.\n\n**DEPRECATED**: Please note that the current behavior will be deprecrated on **2019-01-01**.\nThis method will no longer list private and shared scores, but only public scores of a Flat account.\nIf you want to access to private scores, please use the [Collections API](#tag/Collection) instead.\n" provider: flat method: GET path: "/users/{user}/scores" encoding: json input: { type: "object" properties: { parent: { type: "string" } } additionalProperties: false } output: { type: "array" items: { description: "The score and all its details" type: "object" } } }