Hello,
I'm trying to use the Data Export Service API to export data from Dataverse to Azure SQL, but I'm getting the following error: "Message": "DSF Error: CRM Organization xxx-xxx cannot be found.", "ErrorCode": "1071". The xxx-xxx is the OrganizationId.
Customer doesn't have a Dynamics 365 Sales license. Does he need it to use the Data Export Service API? Docs says it is needed but Microsoft emailed me that it's not necessary.
The URL I am posting to is: https://discovery.crmreplication.azure.net/crm/exporter/profiles with the following data:
{
"Name": "GLEntries",
"OrganizationId": "xxx-xxx",
"Entities": [
{
"Type": "cr02f_glentry"
}
],
"DestinationType": "SqlAzure",
"DestinationKeyVaultUri": "">keyvaultdataverse.vault.azure.net/.../...",
"DestinationPrefix": "dv",
"RetryPolicy": {
"MaxRetryCount": 3,
"IntervalInSeconds": 5,
"Backoff": "Simple"
},
"WriteDeleteLog": true,
"DestinationSchemaName": "dbo"
}