To prepare the database:
Run the following SQL queries on your environment's
identity_local database,
replacing {domain_name} with your
environment's base domain name:
INSERT INTO dbo.ClientRedirectUris (RedirectUri, ClientId) VALUES ('https://{domain_name}/identity/swagger/oauth2-redirect.html', 100);
INSERT INTO dbo.ClientRedirectUris (RedirectUri, ClientId) VALUES ('https://{domain_name}/policy/swagger/oauth2-redirect.html', 200);
INSERT INTO dbo.ClientRedirectUris (RedirectUri, ClientId) VALUES ('https://{domain_name}/repository/swagger/oauth2-redirect.html', 300);
INSERT INTO dbo.ClientRedirectUris (RedirectUri, ClientId) VALUES ('https://{domain_name}/heart/swagger/oauth2-redirect.html', 400);
INSERT INTO dbo.ClientRedirectUris (RedirectUri, ClientId) VALUES ('https://{domain_name}/analytics/swagger/oauth2-redirect.html', 500);
Result
Your database is now set up to send and receive requests through our API.