Unanswered
I'M Trying To Implement A Cleanup Service By Following This Example
To obtain the project ID from its name, you can use something like:resp = client.projects.get_all(only_fields=["id", "name"], name="^examples$")Note the name argument will match as a python regex, so since I want the project whose name is exactly examples I've added ^ and $ (using "examples" will fetch all projects with "examples" in their name)
279 Views
0
Answers
4 years ago
2 years ago