-
Bug
-
Resolution: Timed out
-
Low
-
1
-
Severity 3 - Minor
-
Issue Summary
While using the organization REST API endpoint https://api.atlassian.com/admin/v1/orgs/<ORG_ID>/users, it will show that the managed accounts are billable to access, even though you do not have an Atlassian Access subscription.
Steps to Reproduce
- Verify a domain in your organization;
- Run the organization get users REST API endpoint - you can use the following JS script:
fetch("https://api.atlassian.com/admin/v1/orgs/<ORG_ID>/users",{ headers:{ "Accept": "application/json", "Authorization": "Bearer Sl4xKKVwkTB1zCue4PrY" } }).then(function(response) { response.json().then(function(responseText) { console.log(responseText); }); });
- Check the Atlassian accounts.
Expected Results
As the Organization do not have Atlassian Access, the access_billable information is set to false.
Actual Results
The access_billable info is set to true.
1: access_billable: true account_id: "<AAID>" account_status: "active" account_type: "atlassian"
Workaround
Currently there is no known workaround for this behavior. A workaround will be added here when available