> ## Documentation Index
> Fetch the complete documentation index at: https://developers.formstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# /forms/{formId}/confirmations

Retrieve all confirmation emails associated with a form

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "title": "Formstack API v2025.0",
    "version": "0.0.4"
  },
  "servers": [
    {
      "url": "https://www.formstack.com/api/v2025",
      "description": "Production server"
    },
    {
      "url": "https://staging-formstack.com/api/v2025",
      "description": "Staging server"
    },
    {
      "url": "https://dev-formstack.com/api/v2025",
      "description": "Development server"
    }
  ],
  "paths": {
    "/forms/{formId}/confirmations": {
      "get": {
        "tags": [
          "Confirmation Emails",
          "Classic"
        ],
        "description": "Retrieve all confirmation emails associated with a form",
        "operationId": "getFormConfirmationEmails",
        "parameters": [
          {
            "name": "formId",
            "in": "path",
            "description": "The ID of the form",
            "required": true,
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Form confirmation emails retrieved successfully",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ConfirmationEmailsListingApiDto"
                }
              }
            }
          },
          "403": {
            "description": "The action was forbidden by permissions"
          },
          "404": {
            "description": "Form not found"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "ConfirmationDetailedApiDto": {
        "title": "Confirmation Details",
        "description": "Confirmation email details response",
        "properties": {
          "id": {
            "description": "The ID of the confirmation email",
            "type": "integer",
            "nullable": false
          },
          "form": {
            "description": "ID of the form this confirmation is associated with",
            "type": "integer",
            "nullable": false
          },
          "name": {
            "description": "Name of the confirmation email",
            "type": "string",
            "nullable": true
          },
          "toField": {
            "description": "The form field ID that contains the recipient's email address",
            "type": "integer",
            "nullable": true
          },
          "sender": {
            "description": "Email address of the sender",
            "type": "string",
            "nullable": false
          },
          "subject": {
            "description": "Subject of the confirmation email",
            "type": "string",
            "nullable": false
          },
          "message": {
            "description": "Body content of the confirmation email",
            "type": "string",
            "nullable": false
          },
          "delay": {
            "description": "Delay in minutes before sending the confirmation email",
            "type": "string",
            "nullable": true
          },
          "type": {
            "description": "Type of content (fields|data)",
            "type": "string",
            "nullable": true
          },
          "format": {
            "description": "Format of the confirmation email (e.g., html, plaintext)",
            "type": "string",
            "nullable": true
          },
          "hideEmpty": {
            "description": "Flag to hide empty fields in the confirmation email",
            "type": "string",
            "nullable": true
          },
          "logic": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/LogicDto"
              }
            ],
            "nullable": true,
            "description": "Logic conditions for when to send the confirmation email"
          }
        },
        "type": "object"
      },
      "ConfirmationEmailsListingApiDto": {
        "title": "Confirmation Emails Listing",
        "description": "Confirmation emails listing response",
        "properties": {
          "confirmations": {
            "description": "List of confirmation emails associated with the form",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ConfirmationDetailedApiDto"
            },
            "nullable": true
          }
        },
        "type": "object"
      },
      "LogicDto": {
        "title": "Logic Conditions",
        "description": "Logic conditions for conditional processing",
        "properties": {
          "action": {
            "description": "Action to perform (show/hide)",
            "type": "string",
            "enum": [
              "show",
              "hide"
            ],
            "nullable": false
          },
          "conditional": {
            "description": "Conditional operator (all/any)",
            "type": "string",
            "enum": [
              "all",
              "any"
            ],
            "nullable": false
          },
          "checks": {
            "description": "Array of condition checks",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/LogicFieldCheckDto"
            },
            "nullable": false
          }
        },
        "type": "object"
      },
      "LogicFieldCheckDto": {
        "title": "Logic Check Condition",
        "description": "Single condition check for logic operations",
        "properties": {
          "field": {
            "description": "Field ID to check",
            "type": "string",
            "nullable": false
          },
          "condition": {
            "description": "Condition operator",
            "type": "string",
            "enum": [
              "equals",
              "notequals",
              "greaterthan",
              "lessthan"
            ],
            "nullable": false
          },
          "option": {
            "description": "Value to compare against",
            "type": "string",
            "nullable": false
          }
        },
        "type": "object"
      }
    }
  },
  "tags": [
    {
      "name": "Confirmation Emails",
      "description": "Confirmation emails are the messages sent to the person who submits a form. Use these endpoints to list a form's confirmation emails and to create, retrieve, update, and delete them, including subject, sender, content, send delay, and conditional logic."
    },
    {
      "name": "Classic",
      "description": "Classic"
    }
  ]
}
```