Reputation: 77
I am using
/api/issues/search API
, but the problem i have is i want to get diff of issues in 2 runs, so i was thinking about using the issue key, this API returns, but problem is when I delete the project and run again, all the api keys are new, so i wanted to know whether these issues keys are generated randomnly ? or they have some formula, and if needed to change it, where can i do so ? Can you point me to right location in code ?
Talking about this issue key, which comes in result JSON :
key: "165a4b4a-e8e2-4a54-968d-21a362dbc818"
Upvotes: 1
Views: 508
Reputation: 26843
The issue key is a randomly generated UUID that is by definition immutable (so you can't change it).
If you want to computing the diff between 2 runs of the same project, you have to:
Upvotes: 2