List All Builds
List All Builds
Use the following code to list all builds:
import orbitnode
orbitnode.api_key = "YOUR_API_KEY"
orbitnode.Build.list()Returns: A PagePaginatedResource object containing the builds.
Filtering
You can filter the results by agent_builder_job_id:
orbitnode.Build.list(agent_builder_job_id="ef14f43e-02fc-4b78-902b-9b37b485d3a1")This will return only the builds associated with the specified agent_builder_job_id.
Last updated