Documentation Index
Fetch the complete documentation index at: https://docs.framen.com/llms.txt
Use this file to discover all available pages before exploring further.
Update a Location
Update an existing location’s details. All body parameters are optional — only include the fields you want to change.
Your organization token (e.g., Org_4KmTqZnWpLx).
The unique identifier of the location to update.
Display name of the location.
Must be a level 2 venue type ID from the Venue Types endpoint.
Latitude coordinate (WGS84, range: -90 to 90).
Longitude coordinate (WGS84, range: -180 to 180).
Hourly opening schedule for one week (168 booleans). Index 0 = Monday 00:00.
Daily visitor counts, Monday through Sunday.
Location status. Can only be changed via DRAFT -> REVIEW. You cannot set it to APPROVED yourself.
Whether the location is available for ad campaigns. Cannot be set while status is DRAFT or REVIEW.
Whether the location is archived.
Contact email for the location.
Contact phone number for the location.
If the location status is APPROVED and you update venue_type_id, lat, or long, the status will revert to REVIEW and must be re-approved by FRAMEN. Campaign delivery may be affected.
Example Request
curl -X POST https://api.framen.com/vendor/Org_4KmTqZnWpLx/locations/Loc_f9FxuWDTfzy \
-H "Content-Type: application/json" \
-d '{
"title": "Berlin Hauptbahnhof - West Wing",
"visitors_7": [600, 700, 800, 900, 1000, 1100, 500]
}'