Build/deployed new custom SaaS Conn connector account list and read are working fine but disable is not working. I have tried disable from UI (identityList_>Accounts->DisableDropDown) or API and in both cases I do not see anything in event or connector logs (sail conn logs tail
).
Disablement appears as “Pending” as you can see from attached screenshot from Activities screen. I am also including “Completed” disablement for another custom SaaS connector.
Disable call is workign fine when I test connector locally:
curl --location 'localhost:3000' \
--header 'Content-Type: application/json' \
--data '{
"type": "std:account:disable",
"input": {
"identity": ...
index.ts code:
...
.stdAccountDisable(async (context: Context, input: StdAccountDisableInput, res: Response<StdAccountDisableOutput>) => {
...