Authorization Denied while trying to view action info

Hi,

  I was trying to read the info of an action that called my analysis so i can deactivate the action via the analysis.  



  But when i tried to do it it says i do not have enough permission even though i have enabled the analysis to access and edit the tagged action as well as full access to the account. What other permissions am i missing?  



  And is this the correct way to deactivate the action through Resources.actions.edit?  



  const action\_change= await Resources.actions.edit(action\_id, {active: false})

  console.log(action\_change);

Hi,

  I have another question regarding tagging. if I were to have 2 devices with the same key but device A's value is "em2" but device B's value is "EM2". Will device B be called if the tag i put equals to water : em2?

Hi,

  1. Authorization Denied Issue:
    To resolve the “Authorization Denied” error, ensure that you have granted both “Access” and “Edit” permissions to the Action in Access Management. Your code is correct.

  2. Tagging Question:
    Regarding your tagging question, the tags must match exactly, including case sensitivity. Therefore, “em2” and “EM2” would be considered different tags. Ensure that the tag you use matches the device’s tag exactly.