action gamesparks_copy_snapshot_to_new_game_using_post { label: "copySnapshotToNewGame" provider: gamesparks method: POST path: "/restv2/game/{apiKey}/admin/snapshots/{snapshotId}/copy" encoding: json input: { type: "object" properties: { apiKey: { type: "string" } includeBinaries: { type: "boolean" } includeCollaborators: { type: "boolean" } includeGameConfig: { type: "boolean" } includeMetadata: { type: "boolean" } snapshotId: { type: "string" } } required: ["apiKey", "snapshotId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }