Typeform
Interaja com o Typeform
Typeform é uma plataforma amigável para criar formulários conversacionais, pesquisas e quizzes com foco na experiência engajadora do usuário.
Com o Typeform, você pode:
- Criar formulários interativos: Projete formulários bonitos e conversacionais que engajam respondentes com uma interface única de uma pergunta por vez
- Personalizar sua experiência: Use lógica condicional, campos ocultos e temas personalizados para criar jornadas de usuário personalizadas
- Integrar com outras ferramentas: Conecte-se com mais de 1000 aplicativos através de integrações nativas e APIs
- Analisar dados de respostas: Obtenha insights acionáveis através de ferramentas abrangentes de análise e relatórios
No Zippy, a integração com o Typeform permite que seus agentes interajam programaticamente com seus dados do Typeform como parte de seus fluxos de trabalho. Os agentes podem recuperar respostas de formulários, processar dados de envio e incorporar feedback do usuário diretamente nos processos de tomada de decisão. Esta integração é particularmente valiosa para cenários como qualificação de leads, análise de feedback de clientes e personalização baseada em dados. Ao conectar o Zippy com o Typeform, você pode criar fluxos de trabalho de automação inteligentes que transformam respostas de formulários em insights acionáveis - analisando sentimento, categorizando feedback, gerando resumos e até acionando ações de acompanhamento baseadas em padrões de resposta específicos.
Integre o Typeform ao fluxo de trabalho. Pode recuperar respostas, baixar arquivos e obter insights de formulários. Pode ser usado no modo de acionamento para acionar um fluxo de trabalho quando um formulário é enviado. Requer Chave API.
Retrieve form responses from Typeform
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
formId | string | Sim | Typeform form ID |
apiKey | string | Sim | Typeform Personal Access Token |
pageSize | number | Não | Number of responses to retrieve (default: 25) |
since | string | Não | Retrieve responses submitted after this date (ISO 8601 format) |
until | string | Não | Retrieve responses submitted before this date (ISO 8601 format) |
completed | string | Não | Filter by completion status (true/false) |
| Parâmetro | Tipo | Descrição |
|---|
total_items | number | Total response/form count |
page_count | number | Total page count |
items | json | Response/form items array |
id | string | Form unique identifier |
title | string | Form title |
type | string | Form type |
created_at | string | ISO timestamp of form creation |
last_updated_at | string | ISO timestamp of last update |
settings | json | Form settings object |
theme | json | Theme configuration object |
workspace | json | Workspace information |
fields | json | Form fields/questions array |
thankyou_screens | json | Thank you screens array |
_links | json | Related resource links |
deleted | boolean | Whether the form was successfully deleted |
message | string | Deletion confirmation message |
fileUrl | string | Downloaded file URL |
contentType | string | File content type |
filename | string | File name |
Download files uploaded in Typeform responses
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
formId | string | Sim | Typeform form ID |
responseId | string | Sim | Response ID containing the files |
fieldId | string | Sim | Unique ID of the file upload field |
filename | string | Sim | Filename of the uploaded file |
inline | boolean | Não | Whether to request the file with inline Content-Disposition |
apiKey | string | Sim | Typeform Personal Access Token |
| Parâmetro | Tipo | Descrição |
|---|
fileUrl | string | Direct download URL for the uploaded file |
contentType | string | MIME type of the uploaded file |
filename | string | Original filename of the uploaded file |
Retrieve insights and analytics for Typeform forms
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
formId | string | Sim | Typeform form ID |
apiKey | string | Sim | Typeform Personal Access Token |
| Parâmetro | Tipo | Descrição |
|---|
fields | array | Number of users who dropped off at this field |
Retrieve a list of all forms in your Typeform account
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Typeform Personal Access Token |
search | string | Não | Search query to filter forms by title |
page | number | Não | Page number (default: 1) |
pageSize | number | Não | Number of forms per page (default: 10, max: 200) |
workspaceId | string | Não | Filter forms by workspace ID |
| Parâmetro | Tipo | Descrição |
|---|
total_items | number | Total number of forms in the account |
page_count | number | Total number of pages available |
items | array | Array of form objects |
Retrieve complete details and structure of a specific form
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Typeform Personal Access Token |
formId | string | Sim | Form unique identifier |
| Parâmetro | Tipo | Descrição |
|---|
id | string | Form unique identifier |
title | string | Form title |
type | string | Form type (form, quiz, etc.) |
created_at | string | ISO timestamp of form creation |
last_updated_at | string | ISO timestamp of last update |
settings | object | Form settings including language, progress bar, etc. |
theme | object | Theme configuration with colors, fonts, and design settings |
workspace | object | Workspace information |
Create a new form with fields and settings
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Typeform Personal Access Token |
title | string | Sim | Form title |
type | string | Não | Form type (default: "form"). Options: "form", "quiz" |
workspaceId | string | Não | Workspace ID to create the form in |
fields | json | Não | Array of field objects defining the form structure. Each field needs: type, title, and optional properties/validations |
settings | json | Não | Form settings object (language, progress_bar, etc.) |
themeId | string | Não | Theme ID to apply to the form |
| Parâmetro | Tipo | Descrição |
|---|
id | string | Created form unique identifier |
title | string | Form title |
type | string | Form type |
created_at | string | ISO timestamp of form creation |
last_updated_at | string | ISO timestamp of last update |
settings | object | Form settings |
theme | object | Applied theme configuration |
workspace | object | Workspace information |
fields | array | Array of created form fields |
_links | object | Related resource links |
Update an existing form using JSON Patch operations
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Typeform Personal Access Token |
formId | string | Sim | Form unique identifier to update |
operations | json | Sim | Array of JSON Patch operations (RFC 6902). Each operation needs: op (add/remove/replace), path, and value (for add/replace) |
| Parâmetro | Tipo | Descrição |
|---|
id | string | Updated form unique identifier |
title | string | Form title |
type | string | Form type |
created_at | string | ISO timestamp of form creation |
last_updated_at | string | ISO timestamp of last update |
settings | object | Form settings |
theme | object | Theme configuration |
workspace | object | Workspace information |
fields | array | Array of form fields |
thankyou_screens | array | Array of thank you screens |
_links | object | Related resource links |
Permanently delete a form and all its responses
| Parâmetro | Tipo | Obrigatório | Descrição |
|---|
apiKey | string | Sim | Typeform Personal Access Token |
formId | string | Sim | Form unique identifier to delete |
| Parâmetro | Tipo | Descrição |
|---|
deleted | boolean | Whether the form was successfully deleted |
message | string | Deletion confirmation message |
- Categoria:
tools
- Tipo:
typeform