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)
150 Views
0
Answers
3 years ago
one year ago