Skip to main content
POST
/
api
/
v1
/
screens
Create Screen
curl --request POST \
  --url https://api.example.com/api/v1/screens \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "key": "<string>",
  "screen_type": "Blank"
}
'
{
  "id": 123,
  "name": "<string>",
  "key": "<string>",
  "current": "<string>",
  "config": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required
key
string
required
screen_type
string
default:Blank

Response

Successful Response

id
integer
required
name
string
required
key
string
required
current
string
required
config
string
required