Skip to content

Dottie

Configuration inputs

Input Description Example value
clientid Client ID of the API token created by following the Dottie API docs NABfNzX
apikey The key of the client created N/A

Creating a connector using PowerShell

You must first Connect-IAMCore, as per the documentation

$Connector = New-IAMCoreConnector `
    -Name "Dottie" `
    -TemplateId dottie `
    -Configuration @{
        clientid = "your-client-id"
    } `
    -Secrets @{
        apikey = "your-client-secret"
    }

External documentation