Comments

Export comments from a map

Returns an export of the map comments.

The export can be generated in JSON or CSV format, you can specify the format with the format query parameter, which can be either json or csv. It defaults to json.

GEThttps://felt.com/api/v2/maps/{map_id}/comments/export
Authorization
Path parameters
map_id*string

The ID of the map to export comments from.

Query parameters
Response
Request
const response = await fetch('https://felt.com/api/v2/maps/{map_id}/comments/export', {
    method: 'GET',
    headers: {},
});
const data = await response.json();

Last updated