hi folks
i am using the below link to create a json file to setup connections on the mobile device
https://docs.microsoft.com/en-us/dynamics365/supply-chain/warehousing/install-configure-warehousing-app
{
"ConnectionList": [
{
"ActiveDirectoryClientAppId":"zzzzzzzzzz",
"ConnectionName": "staging",
"ActiveDirectoryResource": "zzzzzzzzz",
"ActiveDirectoryTenant": "zzzzzzzzzzz",
"Company": "zzzzzzz",
"IsEditable": true,
"IsDefaultConnection": true,
"ConnectionType": "clientsecret"
}
]
}
which is fine, but how do i add the Client secret? i have tried an additional record as
{
"ConnectionList": [
{
"ActiveDirectoryClientAppId":"zzzzzzzzzz",
"ConnectionName": "staging",
"ActiveDirectoryResource": "zzzzzzzzz",
"ActiveDirectoryTenant": "zzzzzzzzzzz",
"Company": "zzzzzzz",
"IsEditable": true,
"IsDefaultConnection": true,
"ConnectionType": "clientsecret",
"ClientSecret":"zzzzzz"
}
]
}
but the client secret does not import
any ideas on how i should declare this?
cheers
mal