Documentation Index

Fetch the complete documentation index at: https://docs.restaurant365.com/llms.txt

Use this file to discover all available pages before exploring further.

/public/v1/core/entity-deleted

Prev Next
Get
/public/v1/core/entity-deleted

Retrieves deleted entity references within a specified date range. At least one of deletedOnStart or deletedOnEnd is required. When only one boundary is provided, the query is scoped to that single day.

Security
HTTP
Type Bearer

Put ONLY your JWT Bearer token on textbox below!

Query parameters
deletedOnStart
string (date-time)

Start of the deletion date range (inclusive). Required if deletedOnEnd is not provided. If provided alone, the query is scoped to that single day

deletedOnEnd
string (date-time)

End of the deletion date range (inclusive). Required if deletedOnStart is not provided. If provided alone, the query is scoped to that single day

entityName
string

Entity type name (e.g. Employee, Transaction, DSS). Returns all entity types if not specified

pageSize
integer (int32)

Number of records to return per page. Must be between 1 and 250. Defaults to 250

Minimum1.0
Maximum250.0
Default250
continuationToken
string

Cursor from the previous page. Supply the EntityDeletedId of the last record returned to retrieve the next page

Responses
200

Paged array of deleted entity references matching the supplied criteria.

Array of object
object
entityDeletedId
integer (int32)

Unique sequential identifier of the deleted entity record.

entityId
string (uuid) | null

Identifier of the deleted entity instance.

entityName
string | null

Type name of the deleted entity (e.g. Employee, Transaction, DSS).

deletedOn
string (date-time) | null

Date and time the entity was deleted.

rowVersion
string | null

Concurrency token representing the version of the record at time of deletion.

400

Both date parameters are absent, the start date is after the end date, pageSize is out of range, or the continuationToken is invalid.