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.
Create a Screen
Register a new screen device at a location. Each screen belongs to exactly one Location.
Your organization token (e.g., Org_4KmTqZnWpLx).
Your unique identifier for this screen.
Display name of the screen.
Must be the same as or a child of the parent Location’s venue_type_id. Use values from the Venue Types endpoint.
Must reference an existing Location.
Pixel width of the screen (e.g., 1920).
Pixel height of the screen (e.g., 1080).
Loop duration in seconds.
Whether the screen is archived. Default: false. When true, the screen disappears from the Dashboard UI.
Whether the screen is available for ad campaigns. Default: true.
Number of physical screens this entry represents.
Estimated weekly impressions.
Example Request
curl -X POST https://api.framen.com/vendor/Org_4KmTqZnWpLx/screens \
-H "Content-Type: application/json" \
-d '{
"screen_id": "Scr_xYz789",
"title": "Lobby Display A",
"venue_type_id": "205",
"location_id": "Loc_f9FxuWDTfzy",
"width": 1920,
"height": 1080,
"loop_duration": 60
}'