added
Add tags when uploading a photo to a project
8 months ago by Vanessa D'Amore
We added the ability to pass tags as a body parameter in the Create Project Photo endpoint.
Here's how to do it add tags when uploading a photo to a project with the V2 API
POST /v2/projects/:project_id/photos
{
"photo": {
"uri": "https://www.image.jpg",
"captured_at":1715181014,
"tags": ["windows", "bedroom"]
}
}