I am calling this end point to get the organizations
https://app.asana.com/api/1.0/workspaces?limit=100&is_organization=true&opt_fields=is_organization
It sends all workspaces and not checking is_organization property?
Below is the response.
stdClass Object
(
[data] => Array
(
[0] => stdClass Object
(
[gid] => 34922343979197
[is_organization] => 1
)
[1] => stdClass Object
(
[gid] => 1195030559592972
[is_organization] =>
)
)
[next_page] =>
)
Can anyone help me with this?
And another issue is when I get all the teams of an organization I am getting ādeveloperā team.Where is that team and I cannot access that team from dashboard? how can I ommit that team from teams list?