PersonWantsOrg "Method MakeDecision was not found."

Hello! 

1IM 8.1 

I need approve request over API. 

When I do request 

"https://server/api/entity/PersonWantsOrg/dd74829c-73fa-4d1e-b8ae-059f517c783e/method/MakeDecision" I get error: 

{"responseStatus":{"errorCode":"NotFound","message":"Method MakeDecision was not found.","errors":[]}}

User assigned to Common_StartCustomizerMethods program function.

How I can fix it? 

Parents Reply
  • Sorry, my bad. I stumbled over the wrongly ordered parameter in your first JSON and copied that over to my example. Sorry about that.

    The order of the parameters has to be

    • uidPerson
    • decision (True/False)
    • reason

    {
        "parameters":  [
                       "d6d14a3a-c8fd-46fe-9daf-9a61a8d4180d",
                       "True",
                       "ok"
        ]
    }

    By the way, if you take a look at the log of the Application Server you will get a more detailed error message.

Children