action flat_fork_score { label: "Fork a score" description: "This API call will make a copy of the last revision of the specified score and create a new score. The copy of the score will have a privacy set to `private`.\n\nWhen using a [Flat for Education](https://flat.io/edu) account, the inline and contextualized comments will be accessible in the child document.\n" provider: flat method: POST path: "/scores/{score}/fork" encoding: json input: { type: "object" properties: { collection: { type: "string" description: "Unique identifier of a collection where the score will be copied.\nIf no collection identifier is provided, the score will be stored in the `root` directory.\n" } sharingKey: { type: "string" } } additionalProperties: false } output: { description: "The score and all its details" type: "object" } }