-
wazzalskyPerguntado em 10 de janeiro de 2025 às 09:24
Bom dia, cnsigo exportar meus dados coletados em API?
-
wazzalskyRespondido em 10 de janeiro de 2025 às 12:49
-
Sonnyfer Jotform SupportRespondido em 11 de janeiro de 2025 às 06:55
Hi Alexandre,
Thanks for reaching out to Jotform Support. Our Portuguese Support agents are busy helping other Jotform users right now, so I'll try to help you in English using Google Translate, but you can reply in whichever language you feel comfortable using. Or, if you'd rather have support in Portuguese, let us know and we can have them do that. But, it might take a while until they're available again.
Now, coming back to your question, are you trying to download the PDF copy of your submissions? If so, then I'm afraid we do not have an API endpoint to download the PDFs automatically or retrieve the actual PDF files, but you can construct the PDF link manually via API so that you can download the PDF files. Check out the URL format that you can use below:
https://www.jotform.com/server.php?action=getSubmissionPDF&sid=SubmissionID&formID=FormID
You can also check out our API Documentation here. As for your other question, I moved it to separate thread to avoid confusion. You can check that out here.
Let us know if you need any more help.
-
wazzalskyRespondido em 13 de janeiro de 2025 às 07:19
eITA. VC NÃO RESPONDEU NADA SOBRE O QUE PERGUNTEI. nAO QUERO PDR. QUERO CONECTAR OS DADOS AUTOMATICAMENTE COM MINHAS PLANILHAS NO P.BI
-
Lars Jotform SupportRespondido em 13 de janeiro de 2025 às 13:44
Hi Alexandre,
In order to export all submission data, as in all the text and numbers entered into fields and submitted on your forms, you can use our API. We have many different endpoints you can use to download data, you can read about them in the API documentation. But to download submissions from a form, the best suited would be GET /form/{id}/submissions. As an example, the URL for that could look like the link below, where you'd just have to replace {formID} and {apiKey} with the respective values.
https://api.jotform.com/form/{formID}/submissions?apiKey={apiKey}&limit=1000
This will return up to 1000 submissions from the specified form in JSON format, that you can then use in your code to further process or send to other applications.
Give it a try and let us know if you have any other questions.