Deleted resources are usually still accessible after deletion in redacted mode:
- The deleted resource will not be returned in any list request.
- If the resource is requested specifically, it will be returned but will only contain the
id
,object
, and an additionaldeleted
field with the value oftrue
.
For example, a call to
GET /booking-pages/BP-X0LCRU5LES
Will return the object in redacted mode:
{
"id": "BP-X0LCRU5LES",
"object": "booking_page",
"deleted": true
}
However, BP-X0LCRU5LES
booking page will not be returned when listing all booking pages via
GET /booking-pages
The same is true for expanded responses. When expanded, deleted objects will return in redacted mode as well.