We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c60814 commit 8356a07Copy full SHA for 8356a07
components/azure_devops/azure_devops.app.mjs
@@ -1,5 +1,5 @@
1
import { axios } from "@pipedream/platform";
2
-const API_VERSION = "7.1-preview.1";
+const API_VERSION = "5.0";
3
4
export default {
5
type: "app",
@@ -60,7 +60,7 @@ export default {
60
},
61
async listAccounts(args = {}) {
62
const { value } = await this._makeRequest({
63
- url: `https://app.vssps.visualstudio.com/_apis/accounts?ownerId=${this._oauthUid()}`,
+ url: `https://app.vssps.visualstudio.com/_apis/accounts?memberId=${this._oauthUid()}`,
64
...args,
65
});
66
return value;
0 commit comments