You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we only support getting jobs by ID on the SDK. It would be nice to be able to query them by name too, to check for duplicates and for general querying capabilities.
Workaround for now:
POST to: api/v1/job/list endpoint with a POST body like follows:
{
"metadata": {
"project_string_id": "the project string",
"search": "the name of the job"
}
}
This route shoudl return the job list matching the seach term
The text was updated successfully, but these errors were encountered:
Feature Request
Currently we only support getting jobs by ID on the SDK. It would be nice to be able to query them by name too, to check for duplicates and for general querying capabilities.
Workaround for now:
POST to:
api/v1/job/list
endpoint with a POST body like follows:This route shoudl return the job list matching the seach term
The text was updated successfully, but these errors were encountered: