Hello,
So, I’m working on a Fusion flow and trying to use the Misc Action module "Copy Issue" to copy a request from one project to another. Basically, the request has a ton of info, and mapping everything manually with "Update Record" would be a nightmare.
For example:
I’ve got these fields (below) that need to be mapped in Fusion, but I’m not sure which one is for the Request A ID and which one tells Fusion to drop the copy into Project B.
Any ideas?
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
without having tested, it should map like this:
ID: leave it empty
opTaskID: <ID of the issue / request>
name: <name of the new request>
description: <description> - propably optional
projectID: <ID of target project>
options: array of eventuelle options like clearAssignments, clearUpdates, clearPermissions, clearDocuments, clearUpdates, clearProgress, clearCustomData. (Example: ["clearAssignments","clearUpdates"]) - optional
The API-Explorer defines this as an integer, so using an array will propably not work. If you need options, have a look here.
parentID: <ID of destination project task that you want as the parent of the request> - optional
Regards
Lars
Hi,
without having tested, it should map like this:
ID: leave it empty
opTaskID: <ID of the issue / request>
name: <name of the new request>
description: <description> - propably optional
projectID: <ID of target project>
options: array of eventuelle options like clearAssignments, clearUpdates, clearPermissions, clearDocuments, clearUpdates, clearProgress, clearCustomData. (Example: ["clearAssignments","clearUpdates"]) - optional
The API-Explorer defines this as an integer, so using an array will propably not work. If you need options, have a look here.
parentID: <ID of destination project task that you want as the parent of the request> - optional
Regards
Lars
@lgaertner - Awesome! You nailed it. Works like a charm now!
Thanks a ton!
Views
Replies
Total Likes