diff --git a/apps/oss-app-test/src/connections/connection1/connection1.communication.iml.json b/apps/oss-app-test/src/connections/connection1/connection1.communication.iml.json index 6811893..fea958d 100644 --- a/apps/oss-app-test/src/connections/connection1/connection1.communication.iml.json +++ b/apps/oss-app-test/src/connections/connection1/connection1.communication.iml.json @@ -1,6 +1,6 @@ { // Request - "url": "https://www.example.com/api/whoami", // Absolute URL to the API endpoint which validates credentials + "url": "https://www.example.com/api/v2/whoami", // Absolute URL to the API endpoint which validates credentials "headers": { // Additional HTTP headers "Authorization": "Bearer {{parameters.apiKey}}" // Authorizes user by API key, provided by user during the connection creation. }, @@ -21,4 +21,4 @@ "request.headers.authorization" // Omit HTTP header "Authorization". ] } -} \ No newline at end of file +} diff --git a/apps/oss-app-test/src/general/base.iml.json b/apps/oss-app-test/src/general/base.iml.json index 3892f4f..02a7680 100644 --- a/apps/oss-app-test/src/general/base.iml.json +++ b/apps/oss-app-test/src/general/base.iml.json @@ -1,6 +1,6 @@ { // Default request configuration - "baseUrl": "https://www.example.com/api/v4", // API changed + "baseUrl": "https://www.example.com/api/v2", // API changed "headers": { // Default HTTP headers for all modules and RPCs. "Authorization": "Bearer {{connection.apiKey}}" // Authorization by API key, which user will provide in the connection as parameter. },