Skip to main content
POST
/
vendor
/
{org_token}
/
locations
/
{location_id}
Update a Location
curl --request POST \
  --url https://api.framen.com/vendor/{org_token}/locations/{location_id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "venue_type_id": "<string>",
  "lat": 123,
  "long": 123,
  "opening_168": {},
  "visitors_7": {},
  "status": "<string>",
  "available_for_ads": true,
  "archived": true,
  "email": "<string>",
  "phone": "<string>"
}
'

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.
org_token
string
required
Your organization token (e.g., Org_4KmTqZnWpLx).
location_id
string
required
The unique identifier of the location to update.
title
string
Display name of the location.
venue_type_id
string
Must be a level 2 venue type ID from the Venue Types endpoint.
lat
number
Latitude coordinate (WGS84, range: -90 to 90).
long
number
Longitude coordinate (WGS84, range: -180 to 180).
opening_168
boolean[168]
Hourly opening schedule for one week (168 booleans). Index 0 = Monday 00:00.
visitors_7
int[7]
Daily visitor counts, Monday through Sunday.
status
string
Location status. Can only be changed via DRAFT -> REVIEW. You cannot set it to APPROVED yourself.
available_for_ads
boolean
Whether the location is available for ad campaigns. Cannot be set while status is DRAFT or REVIEW.
archived
boolean
Whether the location is archived.
email
string
Contact email for the location.
phone
string
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]
  }'
Last modified on April 17, 2026