TTMSFNCWebPushRequestPath Class
Defines the URL path segments the server listens on for each push subscription and user state operation.
API unit family: TMS.TMSFNCWebPushServer
Inherits from: TPersistent
Syntax
TTMSFNCWebPushRequestPath = class(TPersistent)
Remarks
Each path is the command portion of the request URL (for example registerSubscription). Clients send their requests to these endpoints, and the server dispatches the matching operation. Each path has a default value and is only streamed when it differs from that default.
Properties
| Name | Description |
|---|---|
| ActivateUser | Path segment that marks a user as active so they receive notifications. |
| DeactivateUser | Path segment that marks a user as inactive so they stop receiving notifications. |
| RegisterSubscription | Path segment that accepts requests to register a new push subscription. |
| UnregisterSubscription | Path segment that accepts requests to remove an existing push subscription. |
| UpdateSubscription | Path segment that accepts requests to replace an existing subscription with a renewed one. |
| VapidPublicKey | Path segment that returns the public application server key clients need to create a subscription. |