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

# Get Form Details

> Retrieve metadata and settings for a Google Form.

The **Get Form Details** action retrieves one Google Form by ID or URL. Use it
to confirm a form's identity, read its titles and settings, or get the public
response URL.

## Inputs

| Input                   | Type           | Required | Description                                       |
| ----------------------- | -------------- | -------- | ------------------------------------------------- |
| **Third-party account** | Google account | Yes      | Account used to read the form.                    |
| **Form ID or URL**      | String         | Yes      | A Google Form ID or a URL containing the form ID. |

The action accepts a direct ID. For a URL, it extracts the value after
`/forms/d/`.

<Tip>
  Use the form's edit URL when you have one. The public responder URL is also
  returned by the action for sharing with respondents.
</Tip>

## Outputs

| Output             | Type   | Description                            |
| ------------------ | ------ | -------------------------------------- |
| **Form ID**        | String | Unique form identifier.                |
| **Title**          | String | Title displayed inside the form.       |
| **Document Title** | String | Title of the Google Forms document.    |
| **Settings**       | Object | Form configuration returned by Google. |
| **Revision ID**    | String | Current form revision identifier.      |
| **Responder URI**  | String | URL where people can submit responses. |

## Example: publish a response link

```text theme={null}
Stored Form ID
  → Google Forms: Get Form Details
  → Add Responder URI to a confirmation email
```

## Troubleshooting

<AccordionGroup>
  <Accordion title="The form ID is invalid">
    Paste the direct ID or a standard Google Forms URL containing `/forms/d/`.
    Confirm the connected Google account has access to the form.
  </Accordion>

  <Accordion title="Title and Document Title differ">
    Google stores the form's displayed title separately from the document title.
    Choose the output that matches where you intend to show it.
  </Accordion>
</AccordionGroup>
