In-Page Experience API Error Reference

This topic provides an error reference for the In-Page Experience API (the platform API).

In-Page Experience API errors

In-Page Experience API Error Reference
Error Examples Description
400 BAD_REQUEST
{
  "status": 400,
  "code": "BAD_REQUEST",
  "message": "No template specified"
}
{
  "status": 400,
  "code": "BAD_REQUEST",
  "message": "Specified template does not exist"
}
{
  "status": 400,
  "code": "BAD_REQUEST",
  "details": [
    "Path `name` is required."
  ]
}
Usually a problem with the request body, such as omitting the template or some other required field, or specifying a template that does not exist
401 UNAUTHORIZED
[
  {
    "error_code": "UNAUTHORIZED",
    "message": "Permission denied."
  }
]
Either no access token was sent with the request, or the client credentials used to create the access token did not have the correct permissions for the request
404 NOT_FOUND
{
  "status": 404,
  "code": "NOT_FOUND",
  "message": "Experience {experience_id} not found"
}
The experience you are trying to update does not exist. It may have been deleted, or the experience id in the request may be incorrect.