According to the docs here the Scope
should contain a Project
and in that an Id
, a Key
, and Name
:
"scope": {
"type": "PROJECT",
"project": {
"id": "10000",
"key": "KEY",
"name": "Next Gen Project"
}
}
But our response only contains an Id
:
"scope": {
"type": "PROJECT",
"project": {
"id": "10030"
}
}
We have tried adding this to the request url:
&expand=scope.project.key
Even though the endpoint doesn’t say what can be expanded but we were hoping it was just missing there.
Is there a different way we are supposed to be able to get that key from the response?
Edit: It appears this question has been asked before and the documentation is and has been incorrect for well over 2 and a half years so…super cool.