v1
latestOpenAPI 3.0.32026-07-26120117318.1 KBScreens
Create a screen
Creates a new screen skeleton for the authenticated project.
The created screen has no visual content yet — it is a placeholder you then open in the Qonversion dashboard to lay out components, upload media, and add localisations. Render-time fields (background, default_lang, configs, content, prod_key, sandbox_key) are populated by the dashboard editor, not by this endpoint.
Returns 201 Created with the newly created V4Screen and a Location header pointing at GET /v4/screens/{screen_id}.
post/screens
Request body
Example request
{
"name": "Summer Paywall"
}Response
Screen created successfully.
Example response
{
"id": "scr_abc123",
"url": "/v4/screens/scr_abc123",
"name": "Onboarding Paywall",
"status": "published",
"created_at": "2025-09-15T12:30:00Z",
"updated_at": "2025-11-03T10:26:40Z",
"default_lang": "en"
}