API key not enabled
- 22 Jan 2024
- 1 Minute to read
- Print
API key not enabled
- Updated on 22 Jan 2024
- 1 Minute to read
- Print
Article summary
Did you find this summary helpful?
Thank you for your feedback
Symptoms
You can’t see the API Key tab in the IXM Platform user management. You can’t retrieve your API key.
Resolution
The following steps can help you identify and solve the issue:
To ensure that API keys are enabled, access your database.
Find the customer ID and assigned API keys in the dbo.datCustomers table. You can use the following SQL statement:
SELECT Id, Name, ApiKeysEnabled FROM dbo.datCustomers ORDER BY ID DESC
In the table, check the value in the ApiKeysEnabled column. By default the value is 0, which means API Keys are disabled.
To change the API keys value, you can use the following SQL statement:
UPDATE dbo.datCustomers SET ApiKeysEnabled = 1 WHERE Id = 123