Get list of possible project file tree templates matching a file path
and data ids corresponding to template tokens.
POST
/data/entities/guess_from_path
curl \
--request POST 'http://api.example.com/data/entities/guess_from_path' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"project_id":"a24a6ea4-ce75-4665-a070-57453082c25","file_path":"/project/asset/working/main_v001.blend","sep":"/"}'
Request examples
{
"project_id": "a24a6ea4-ce75-4665-a070-57453082c25",
"file_path": "/project/asset/working/main_v001.blend",
"sep": "/"
}
Response examples (200)
{
"matches": [
{
"template": "default",
"confidence": 0.95,
"data": {
"project_id": "string",
"entity_id": "string"
}
}
]
}