Static Screens

REQUEST (Javascript)

fetch("https://www.includecore.com/api/projects/PROJECT_ID/screens/SCREEN_ID-SCREEN_NAME", {
    method: "GET",
    headers: { "Accept": "application/json" }
});

RESPONSE

{
    "screen": {
        "screen_field": "screen_value",
        "another_field": "another_field_value"
    },
    "globals": {
        "logo": "logo_url",
        "another_global_item": "another_value"
    }
}

Last updated