Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.
SOLVED

Help needed - copyIssue in Fusion

Avatar

Level 3

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:

  • Request A is in Project A.
  • I need to copy Request A so it sits in Project B.


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?

 

ab_cdef_0-1740148325414.png

 

1 Accepted Solution

Avatar

Correct answer by
Level 10

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

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

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

Avatar

Level 3

@lgaertner - Awesome! You nailed it. Works like a charm now!

Thanks a ton!