Atlassian is sunsetting the Wiki and Issues features of Bitbucket on very short notice, without providing a ui for users to see which repositories of theirs are affected.
This PowerShell snippet will iterate through accessible repositories in the provided namespace, and produce a file in the running user's home directory called repos.csv with information about the repositories, including their URL and if they're using the deprecated Wiki or Issues features.
Replace ORGNAMEHERE in the $url variable with your namespace, and email@domain.com:apikey in the $creds variable with your credentials.
& {
$creds = "email@domain.com:apikey"
$url = "https://api.bitbucket.org/2.0/repositories/ORGNAMEHERE?pagelen=100"