Skip to main content
PUT
/
v1
/
pages
/
{page_id}
Update Page
curl --request PUT \
  --url https://api.oviond.com/v1/pages/{page_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "position": 123,
  "visible": true,
  "legacy": true
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

page_id
string
required

Body

application/json
name
string
Minimum string length: 1
position
integer
visible
boolean
legacy
boolean

Response

Page updated

success
enum<boolean>
required
Available options:
true