For the complete documentation index, see llms.txt. This page is also available as Markdown.

FormMessageConfirmations

Introduction

FormMessageConfirmations record receipt or approval decisions for submitted FormMessages.

The comment field uses the shared Rich Text HTML format.

Model Definition

Alias

formMessageConfirmation

Capabilities

Show by Token

Show one FormMessageConfirmation by token.

Definition

GET /api/forms/messages/confirmations/{formMessageConfirmationByToken}

Route Parameters

Parameter
Type
Description

formMessageConfirmationByToken

string

Signed confirmation token.

Request Keys

Key
Type
Default
Description

selects

string

All fields

Comma-separated fields to return.

Example Request

Example Response

Update by Token

Update one FormMessageConfirmation by token.

Definition

PUT /api/forms/messages/confirmations/{formMessageConfirmationByToken}

Route Parameters

Parameter
Type
Description

formMessageConfirmationByToken

string

Signed confirmation token.

Request Keys

Key
Type
Default
Description

lang_id

string

Current value

Language key. Use en-US for this example.

status

string

Current value

Allowed confirmation status for this request.

comment

string | null

null

Optional confirmation comment.

referrer*

string

Token recipient when available

Required when the token does not already carry its recipient.

Keys with * are required.

Example Request

Example Response

Reset

Reset an existing FormMessageConfirmation.

Definition

POST /api/forms/messages/confirmations/{formMessageConfirmation}/reset

Route Parameters

Parameter
Type
Description

formMessageConfirmation

integer

Confirmation ID to replace.

Behavior

The previous confirmation is deleted, a new token is generated, and the reset notification is distributed.

Example Request

Example Response

Last updated