Comments
APIs for programatic collaboration
Comments bring conversations to mapping.
With these APIs, you can export, resolve, and delete map comments and collaboration threads.
Export all comments and replies from a map in CSV
or JSON
format.
The ID of the map to export comments from.
The format to export the comments in, either 'csv' or 'json' (default)
Comment export response
UnauthorizedError
UnauthorizedError
NotFoundError
Unprocessable Entity
Unprocessable Entity
InternalServerError
GET /api/v2/maps/{map_id}/comments/export HTTP/1.1
Host: felt.com
Authorization: Bearer YOUR_API_KEY
Accept: */*
[]
Mark a comment thread as resolved.
The ID of the map that contains the comment.
The ID of the comment to resolve.
Comment resolved response
UnauthorizedError
UnauthorizedError
NotFoundError
Unprocessable Entity
Unprocessable Entity
InternalServerError
POST /api/v2/maps/{map_id}/comments/{comment_id}/resolve HTTP/1.1
Host: felt.com
Authorization: Bearer YOUR_API_KEY
Accept: */*
{
"comment_id": "luCHyMruTQ6ozGk3gPJfEB"
}
Permanently delete a comment or reply from the map.
This action cannot be undone. The comment or reply will be permanently removed from the map.
The ID of the map that contains the comment.
The ID of the comment to delete.
No Content
UnauthorizedError
UnauthorizedError
NotFoundError
Unprocessable Entity
Unprocessable Entity
InternalServerError
DELETE /api/v2/maps/{map_id}/comments/{comment_id} HTTP/1.1
Host: felt.com
Authorization: Bearer YOUR_API_KEY
Accept: */*
No content
Was this helpful?