Pular para o conteúdo principal
GET
/
form-integrations
/
v1
/
submissions
/
forms
/
{form_guid}
Get submissions for a form
curl --request GET \
  --url https://api.hubapi.com/form-integrations/v1/submissions/forms/{form_guid}
{
  "results": [
    {
      "conversionId": "<string>",
      "submittedAt": 123,
      "values": [
        {
          "name": "<string>",
          "value": "<string>"
        }
      ],
      "pageUrl": "<string>"
    }
  ],
  "paging": {
    "next": {
      "after": "<string>",
      "link": "<string>"
    }
  }
}

Parâmetros de caminho

form_guid
string
obrigatório

The unique guid for the form that you want to get the submissions from.

Parâmetros de consulta

limit
integer
padrão:20

The number of results to include in the response. Defaults to 20, supports a maximum of 50.

Intervalo obrigatório: 1 <= x <= 50
after
string

Used to get the next page of results. Each response returns an after value, which is used with this parameter in the next request to get the next page of results.

Resposta

Form submissions retrieved successfully

results
object[]
obrigatório
paging
object
Last modified on April 13, 2026