Log assets using Vectice IDs
Vectice IDs prefix
Prefix
Asset
Where can I find the Vectice IDs?




# Find Workspace IDs to select a specific Workspace
connect = vectice.connect(api_token="your-api-key") #Paste your API key
connect.list_workspaces()
# Find Project IDs inside of Workspace to retrieve a specific project
workspace = connect.workspace("WSP-123")
workspace.list_projects()
# Find Phase IDs to retrieve a specific phase
project = workspace.project("PRJ-1228")
project.list_phases()
# Find Iteration IDs to retrieve a specific iteration
phase = project.phase("PHA-120")
phase.list_iterations()