Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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.
},
Expand All @@ -21,4 +21,4 @@
"request.headers.authorization" // Omit HTTP header "Authorization".
]
}
}
}
2 changes: 1 addition & 1 deletion apps/oss-app-test/src/general/base.iml.json
Original file line number Diff line number Diff line change
@@ -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.
},
Expand Down
Loading