Good day.
In our dataverse configuration, we created by means of a .json according to OAuth Login Options to enter through Azure, this profile was named Microsoft. Now we need to delete this profile but have not found in the documentation how to do this. Thank you for your help
Hmm. Can you list them with this?
curl http://localhost:8080/api/admin/authenticationProviders
Once you know the id, you should be able to delete it with this: https://guides.dataverse.org/en/6.3/api/native-api.html#delete-an-authentication-provider
If it is correct, I have already listed them with the curl command http://localhost:8080/api/admin/authenticationProviders, but it is not clear to me how to perform the DELETE command from the OS.
What is the id number?
"id":"microsoft"
Oh! Weird! It's not a number?
I guess not...
{
"status": "OK",
"data": [
{
"id": "builtin",
"factoryAlias": "BuiltinAuthenticationProvider",
"title": "Dataverse Local",
"subtitle": "Datavers' Internal Authentication provider",
"factoryData": "",
"enabled": true
}
]
}
Anyway, this should do it:
curl -X DELETE http://localhost:8080/api/admin/authenticationProviders/microsoft
Perfect, I have already solved it with your help, thank you.
Great! Thank you for flying Dataverse! :airplane_departure: ![]()
Last updated: Nov 01 2025 at 14:11 UTC