Replies: 1 comment
-
|
Related update: #1422 This discussion is addressed by the new |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I made a global variable named @Transactionid. It should only be assigned a value if I run the request ### approve task! When I use ###, it sets a value for it, which is fine. However, I also set values for this variable in another part of the code.
@Transactionid = {{completTask.response.body.$.data.transactionId}}
approve task
@name approveTask
PATCH http://localhost:3000/api/v1/task/{{idTask}}/approve
Content-Type: application/json
Authorization: Bearer {{accessTokenDeTask}}
{
}
@Transactionid = {{approveTask.response.body.$.data.transactionId}} //When we reach that line, the value is overwritten because I ran this method once before.
Beta Was this translation helpful? Give feedback.
All reactions