Skip to content
Sections

Guest portal

List guest-owned reservation and visit history

GET/guest-portal/history

Returns the capability-owned reservation, waitlist, table-session, and visit history using the requested signed cursor.

Authentication

x-guest-portal-token: <HALLIFY_GUEST_PORTAL_TOKEN>

Guest-owned portal session token.

Connection guide

Parameters

limitQuery · Optional

Optional maximum number of records returned in one page; response pagination metadata indicates how to continue when more matches remain.

integer
Full definition
{
  "minimum": 1,
  "maximum": 50,
  "default": 20,
  "type": "integer",
  "example": 20
}
cursorQuery · Optional

Optional opaque cursor returned by the preceding page; submit it unchanged with the same scope and filters to continue.

string
Full definition
{
  "maxLength": 2048,
  "type": "string",
  "example": "example"
}

Responses

200Returns one cursor page of guest-owned history and continuation metadata.
GuestPortalHistoryResultDto
Full definition
{
  "$ref": "#/components/schemas/GuestPortalHistoryResultDto"
}
Example response · 200 · application/json
{
  "items": [
    {
      "id": "af924415-09ad-48f0-8889-e7ae8d3b1d06",
      "type": "RESERVATION",
      "status": "example",
      "occurredAt": "2026-01-15T12:00:00.000Z",
      "partySize": 0
    }
  ],
  "hasMore": true
}
401Rejects a missing, malformed, expired, revoked, or invalid guestPortalToken credential at the owning domain boundary.
TranslatedErrorDto
Full definition
{
  "$ref": "#/components/schemas/TranslatedErrorDto"
}
Example response · 401 · application/json
{
  "statusCode": 401,
  "error": "errors:http.unauthorized",
  "code": "HTTP_UNAUTHORIZED",
  "message": "errors:http.unauthorized",
  "translationKey": "errors:http.unauthorized"
}

Schemas

GuestPortalHistoryResultDto

Returns one cursor page of guest-owned history and continuation metadata.

itemsRequired

Items returned in the guest portal history collection.

array
Full definition
{
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "id",
      "type",
      "status",
      "occurredAt",
      "partySize"
    ],
    "properties": {
      "id": {
        "type": "string",
        "format": "uuid",
        "description": "Hallify UUID identifying guest portal history item.",
        "example": "af924415-09ad-48f0-8889-e7ae8d3b1d06"
      },
      "type": {
        "type": "string",
        "enum": [
          "RESERVATION",
          "VISIT",
          "ORDER"
        ],
        "description": "Allowed type for guest portal history item: RESERVATION, VISIT, ORDER.",
        "example": "RESERVATION"
      },
      "status": {
        "type": "string",
        "description": "Current lifecycle status of guest portal history item.",
        "example": "example"
      },
      "occurredAt": {
        "type": "string",
        "format": "date-time",
        "description": "RFC 3339 timestamp for occurred at; offsets represent the same absolute instant.",
        "example": "2026-01-15T12:00:00.000Z"
      },
      "completedAt": {
        "type": "string",
        "format": "date-time",
        "nullable": true,
        "description": "RFC 3339 timestamp for completed at; offsets represent the same absolute instant. Null means no value is recorded for this representation.",
        "example": "2026-01-15T13:00:00.000Z"
      },
      "partySize": {
        "type": "integer",
        "description": "Whole-number party size recorded for guest portal history item.",
        "example": 0
      },
      "reference": {
        "type": "string",
        "nullable": true,
        "description": "Human- or provider-assigned reference used to reconcile guest portal history item with its source record. Null means no value is recorded for this representation.",
        "example": "example-reference"
      }
    },
    "example": {
      "id": "af924415-09ad-48f0-8889-e7ae8d3b1d06",
      "type": "RESERVATION",
      "status": "example",
      "occurredAt": "2026-01-15T12:00:00.000Z",
      "partySize": 0
    }
  },
  "description": "Items returned in the guest portal history collection.",
  "example": [
    {
      "id": "af924415-09ad-48f0-8889-e7ae8d3b1d06",
      "type": "RESERVATION",
      "status": "example",
      "occurredAt": "2026-01-15T12:00:00.000Z",
      "partySize": 0
    }
  ]
}
nextCursorOptional

Opaque pagination cursor for guest portal history; return it unchanged with the same filters. Null means no value is recorded for this representation.

string · null
Full definition
{
  "type": "string",
  "nullable": true,
  "description": "Opaque pagination cursor for guest portal history; return it unchanged with the same filters. Null means no value is recorded for this representation.",
  "example": "example"
}
hasMoreRequired

Whether guest portal history has more.

boolean
Full definition
{
  "type": "boolean",
  "description": "Whether guest portal history has more.",
  "example": true
}
Full definition
{
  "type": "object",
  "required": [
    "items",
    "hasMore"
  ],
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id",
          "type",
          "status",
          "occurredAt",
          "partySize"
        ],
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid",
            "description": "Hallify UUID identifying guest portal history item.",
            "example": "af924415-09ad-48f0-8889-e7ae8d3b1d06"
          },
          "type": {
            "type": "string",
            "enum": [
              "RESERVATION",
              "VISIT",
              "ORDER"
            ],
            "description": "Allowed type for guest portal history item: RESERVATION, VISIT, ORDER.",
            "example": "RESERVATION"
          },
          "status": {
            "type": "string",
            "description": "Current lifecycle status of guest portal history item.",
            "example": "example"
          },
          "occurredAt": {
            "type": "string",
            "format": "date-time",
            "description": "RFC 3339 timestamp for occurred at; offsets represent the same absolute instant.",
            "example": "2026-01-15T12:00:00.000Z"
          },
          "completedAt": {
            "type": "string",
            "format": "date-time",
            "nullable": true,
            "description": "RFC 3339 timestamp for completed at; offsets represent the same absolute instant. Null means no value is recorded for this representation.",
            "example": "2026-01-15T13:00:00.000Z"
          },
          "partySize": {
            "type": "integer",
            "description": "Whole-number party size recorded for guest portal history item.",
            "example": 0
          },
          "reference": {
            "type": "string",
            "nullable": true,
            "description": "Human- or provider-assigned reference used to reconcile guest portal history item with its source record. Null means no value is recorded for this representation.",
            "example": "example-reference"
          }
        },
        "example": {
          "id": "af924415-09ad-48f0-8889-e7ae8d3b1d06",
          "type": "RESERVATION",
          "status": "example",
          "occurredAt": "2026-01-15T12:00:00.000Z",
          "partySize": 0
        }
      },
      "description": "Items returned in the guest portal history collection.",
      "example": [
        {
          "id": "af924415-09ad-48f0-8889-e7ae8d3b1d06",
          "type": "RESERVATION",
          "status": "example",
          "occurredAt": "2026-01-15T12:00:00.000Z",
          "partySize": 0
        }
      ]
    },
    "nextCursor": {
      "type": "string",
      "nullable": true,
      "description": "Opaque pagination cursor for guest portal history; return it unchanged with the same filters. Null means no value is recorded for this representation.",
      "example": "example"
    },
    "hasMore": {
      "type": "boolean",
      "description": "Whether guest portal history has more.",
      "example": true
    }
  },
  "description": "Returns one cursor page of guest-owned history and continuation metadata.",
  "example": {
    "items": [
      {
        "id": "af924415-09ad-48f0-8889-e7ae8d3b1d06",
        "type": "RESERVATION",
        "status": "example",
        "occurredAt": "2026-01-15T12:00:00.000Z",
        "partySize": 0
      }
    ],
    "hasMore": true
  }
}
TranslatedErrorDto

Stable error envelope emitted by the global HTTP exception boundary. Domain-specific machine data, when present, is nested under details.

statusCodeRequired

HTTP status code repeated from the response.

integer
Full definition
{
  "type": "integer",
  "description": "HTTP status code repeated from the response.",
  "example": 400
}
errorRequired

Translation key for the HTTP category, such as errors:http.conflict. The specific cause is identified by code and translationKey.

string
Full definition
{
  "type": "string",
  "description": "Translation key for the HTTP category, such as errors:http.conflict. The specific cause is identified by code and translationKey.",
  "example": "errors.request.invalid"
}
codeRequired

Stable machine-readable domain code, or an HTTP_* fallback when no domain code is provided. Branch on this field and the HTTP status; localized wording never controls retries or business decisions.

string
Full definition
{
  "type": "string",
  "example": "HTTP_BAD_REQUEST",
  "description": "Stable machine-readable domain code, or an HTTP_* fallback when no domain code is provided. Branch on this field and the HTTP status; localized wording never controls retries or business decisions."
}
messageRequired

Translation key, identical to translationKey. The API does not return localized display text. Resolve the key and translationValues in the consuming application.

string
Full definition
{
  "type": "string",
  "example": "errors:http.badRequest",
  "description": "Translation key, identical to translationKey. The API does not return localized display text. Resolve the key and translationValues in the consuming application."
}
translationKeyRequired

Canonical translation key, identical to message. Status-specific errors:http.* keys cover unspecified failures. Public keys and EN/RU explanations are listed in Developers; unknown keys require a localized client fallback.

string
Full definition
{
  "type": "string",
  "example": "errors:http.badRequest",
  "description": "Canonical translation key, identical to message. Status-specific errors:http.* keys cover unspecified failures. Public keys and EN/RU explanations are listed in Developers; unknown keys require a localized client fallback."
}
translationValuesOptional

Optional scalar values for placeholders in the translation. Treat values as data, escape them when rendering, and never use them as translation options.

object
Full definition
{
  "type": "object",
  "additionalProperties": {
    "oneOf": [
      {
        "type": "string",
        "example": "example"
      },
      {
        "type": "number",
        "example": 0
      },
      {
        "type": "boolean",
        "example": true
      }
    ],
    "example": "example"
  },
  "description": "Optional scalar values for placeholders in the translation. Treat values as data, escape them when rendering, and never use them as translation options.",
  "example": {
    "exampleKey": "example"
  }
}
validationErrorsOptional

Field validation failures with translation keys and stable validator codes. Submitted values and raw validator text are not included.

array
Full definition
{
  "description": "Field validation failures with translation keys and stable validator codes. Submitted values and raw validator text are not included.",
  "type": "array",
  "items": {
    "$ref": "#/components/schemas/ValidationErrorDto"
  },
  "example": [
    {
      "field": "email",
      "translationKey": "validation:isEmail",
      "code": "isEmail",
      "message": "validation:isEmail"
    }
  ]
}
detailsOptional

Optional domain-specific blocker or validation details

oneOf
Full definition
{
  "description": "Optional domain-specific blocker or validation details",
  "oneOf": [
    {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/JsonValue"
      },
      "example": [
        "example"
      ]
    },
    {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/components/schemas/JsonValue"
      },
      "example": {
        "exampleKey": "example"
      }
    }
  ],
  "example": [
    "example"
  ]
}
Full definition
{
  "type": "object",
  "properties": {
    "statusCode": {
      "type": "integer",
      "description": "HTTP status code repeated from the response.",
      "example": 400
    },
    "error": {
      "type": "string",
      "description": "Translation key for the HTTP category, such as errors:http.conflict. The specific cause is identified by code and translationKey.",
      "example": "errors.request.invalid"
    },
    "code": {
      "type": "string",
      "example": "HTTP_BAD_REQUEST",
      "description": "Stable machine-readable domain code, or an HTTP_* fallback when no domain code is provided. Branch on this field and the HTTP status; localized wording never controls retries or business decisions."
    },
    "message": {
      "type": "string",
      "example": "errors:http.badRequest",
      "description": "Translation key, identical to translationKey. The API does not return localized display text. Resolve the key and translationValues in the consuming application."
    },
    "translationKey": {
      "type": "string",
      "example": "errors:http.badRequest",
      "description": "Canonical translation key, identical to message. Status-specific errors:http.* keys cover unspecified failures. Public keys and EN/RU explanations are listed in Developers; unknown keys require a localized client fallback."
    },
    "translationValues": {
      "type": "object",
      "additionalProperties": {
        "oneOf": [
          {
            "type": "string",
            "example": "example"
          },
          {
            "type": "number",
            "example": 0
          },
          {
            "type": "boolean",
            "example": true
          }
        ],
        "example": "example"
      },
      "description": "Optional scalar values for placeholders in the translation. Treat values as data, escape them when rendering, and never use them as translation options.",
      "example": {
        "exampleKey": "example"
      }
    },
    "validationErrors": {
      "description": "Field validation failures with translation keys and stable validator codes. Submitted values and raw validator text are not included.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ValidationErrorDto"
      },
      "example": [
        {
          "field": "email",
          "translationKey": "validation:isEmail",
          "code": "isEmail",
          "message": "validation:isEmail"
        }
      ]
    },
    "details": {
      "description": "Optional domain-specific blocker or validation details",
      "oneOf": [
        {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/JsonValue"
          },
          "example": [
            "example"
          ]
        },
        {
          "type": "object",
          "additionalProperties": {
            "$ref": "#/components/schemas/JsonValue"
          },
          "example": {
            "exampleKey": "example"
          }
        }
      ],
      "example": [
        "example"
      ]
    }
  },
  "required": [
    "statusCode",
    "error",
    "code",
    "message",
    "translationKey"
  ],
  "description": "Stable error envelope emitted by the global HTTP exception boundary. Domain-specific machine data, when present, is nested under details.",
  "example": {
    "statusCode": 400,
    "error": "errors:http.badRequest",
    "code": "HTTP_BAD_REQUEST",
    "message": "errors:http.badRequest",
    "translationKey": "errors:http.badRequest"
  }
}
ValidationErrorDto

Field validation failure with a field path, stable validator code and a translation key. Human-readable text belongs to the consuming application.

fieldRequired

Public field path. Nested properties and array indices are separated by dots.

string
Full definition
{
  "type": "string",
  "example": "email",
  "description": "Public field path. Nested properties and array indices are separated by dots."
}
translationKeyRequired

Translation key for this validator, identical to message. Resolve it using a client dictionary; see the public Developers error catalog.

string
Full definition
{
  "type": "string",
  "example": "validation:isEmail",
  "description": "Translation key for this validator, identical to message. Resolve it using a client dictionary; see the public Developers error catalog."
}
codeRequired

Stable validator identifier for this field failure. Custom validators may define additional identifiers.

string
Full definition
{
  "type": "string",
  "example": "isEmail",
  "description": "Stable validator identifier for this field failure. Custom validators may define additional identifiers."
}
messageRequired

Translation key describing this field validation failure, identical to translationKey. Submitted values and validator prose are not included.

string
Full definition
{
  "type": "string",
  "example": "validation:isEmail",
  "description": "Translation key describing this field validation failure, identical to translationKey. Submitted values and validator prose are not included."
}
translationValuesOptional

Optional scalar values for placeholders in the translation. Treat values as data, escape them when rendering, and never use them as translation options.

object
Full definition
{
  "type": "object",
  "additionalProperties": {
    "oneOf": [
      {
        "type": "string",
        "example": "example"
      },
      {
        "type": "number",
        "example": 0
      },
      {
        "type": "boolean",
        "example": true
      }
    ],
    "example": "example"
  },
  "description": "Optional scalar values for placeholders in the translation. Treat values as data, escape them when rendering, and never use them as translation options.",
  "example": {
    "exampleKey": "example"
  }
}
Full definition
{
  "type": "object",
  "properties": {
    "field": {
      "type": "string",
      "example": "email",
      "description": "Public field path. Nested properties and array indices are separated by dots."
    },
    "translationKey": {
      "type": "string",
      "example": "validation:isEmail",
      "description": "Translation key for this validator, identical to message. Resolve it using a client dictionary; see the public Developers error catalog."
    },
    "code": {
      "type": "string",
      "example": "isEmail",
      "description": "Stable validator identifier for this field failure. Custom validators may define additional identifiers."
    },
    "message": {
      "type": "string",
      "example": "validation:isEmail",
      "description": "Translation key describing this field validation failure, identical to translationKey. Submitted values and validator prose are not included."
    },
    "translationValues": {
      "type": "object",
      "additionalProperties": {
        "oneOf": [
          {
            "type": "string",
            "example": "example"
          },
          {
            "type": "number",
            "example": 0
          },
          {
            "type": "boolean",
            "example": true
          }
        ],
        "example": "example"
      },
      "description": "Optional scalar values for placeholders in the translation. Treat values as data, escape them when rendering, and never use them as translation options.",
      "example": {
        "exampleKey": "example"
      }
    }
  },
  "required": [
    "field",
    "translationKey",
    "code",
    "message"
  ],
  "description": "Field validation failure with a field path, stable validator code and a translation key. Human-readable text belongs to the consuming application.",
  "example": {
    "field": "email",
    "translationKey": "validation:isEmail",
    "code": "isEmail",
    "message": "validation:isEmail"
  }
}
JsonValue

Recursively JSON-safe value used only where the owning contract intentionally allows free-form structured data.

Full definition
{
  "oneOf": [
    {
      "type": "string",
      "nullable": true,
      "example": "example"
    },
    {
      "type": "number",
      "example": 0
    },
    {
      "type": "boolean",
      "example": true
    },
    {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/JsonValue"
      },
      "example": [
        "example"
      ]
    },
    {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/components/schemas/JsonValue"
      },
      "example": {
        "exampleKey": "example"
      }
    }
  ],
  "description": "Recursively JSON-safe value used only where the owning contract intentionally allows free-form structured data.",
  "example": "example"
}

Hallify uses essential cookies and optional analytics.

Essential cookies keep sign-in, locale, and theme preferences working. Analytics is off until you choose to allow it.