Difference between message.status.code & response.status.code ?

Not applicable

im having trouble creating a scenario where these are different!

Solved Solved
0 2 2,023
1 ACCEPTED SOLUTION

The only difference is

> message.status.code is READ ONLY, its the response code what the target endpoint sends

> response.status.code is READ/WRITE, if you chose to override the response code of the target, you could write to this variable

View solution in original post

2 REPLIES 2

The only difference is

> message.status.code is READ ONLY, its the response code what the target endpoint sends

> response.status.code is READ/WRITE, if you chose to override the response code of the target, you could write to this variable

Thanks, guys. I've updated the variables reference to clarify.