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