Thanks for your response, @mark-robustelli. Apologies — it was my mistake. I was supposed to use the instance ID of the previously taken action, not the User Action ID.
Posts made by d.chinguun.0301
-
RE: Cancel a Previously Taken Action
-
RE: Cancel a Previously Taken Action
Hi @mark-robustelli,
I initially tried the Take an Action on a User API (https://fusionauth.io/docs/apis/actioning-users#take-an-action-on-a-user) with the following request body:
{
"broadcast": true,
"action": {
"actioneeUserId": "dd0e31c9-a7cb-3597-bff1-45d3b13255ad",
"actionerUserId": "dd0e31c9-a7cb-3597-bff1-45d3b13255ad",
"comment": "This user is being a jerk",
"emailUser": true,
"expiry": 1771586483322,
"userActionId": "dfc52db9-ff76-4606-92b6-c7419ae5fe6c"
}
}
Afterward, I attempted to cancel the action using the Cancel a Previously Taken Action API, but I received a 404 response.I used the following actionId:
dfc52db9-ff76-4606-92b6-c7419ae5fe6c, which does exist.Could you help me understand what might be going wrong?
Thanks!
-
Cancel a Previously Taken Action
Hi, I am currently using FusionAuth version 1.53.2. When I try to cancel actions that are in progress using the API, it returns a 404 error. I've read through all the release notes but didn't find any mention of this issue. Is this a known bug, or am I implementing the API call incorrectly?