Iv’e working on creating saas connector, and I added the std:account:disable command
but when I try to test in in a source, the actions menu is disabled
can you help me understand what i’m missing?
Iv’e working on creating saas connector, and I added the std:account:disable command
can you help me understand what i’m missing?
By chance, is the account linked to your identity? I’ve noticed that it disables that picker when the linked identity is the current logged in user.
Add “std:account:enable” to your connector-spec.json file. I know it sounds counter intuitive, but Connectors do not have a feature for Disable, only Enable.
In your Index file, you only need .stdAccountDisable, even though std:account:enable is in the connector-spec.json file.
If you have already created your source and don’t want to recreate it, you can add “ENABLE” to the features list via the Update Source (Partial) API.
[
{
"op": "add",
"path": "/features/-",
"value": "ENABLE"
}
]
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.