The place to talk about APIs, SDK, hacks and implementations.
Recently active
I can’t seem to figure out what the issue could be, when I submit my typeform, some custom fields in active campaign crm are not populated? even during mapping those fields were not available, how do I add them or go about solving this?
Good day I need help with downloading the results responses, the page hangs all the time I have changed browsers it keeps running the results but does not pull them up. to the point that I am able to download them. its shows that there are results 37 responses
Olá, Preciso de uma ajuda para o seguinte caso: Estou utilizando a API de respostas para pegar os dados do TyperForm e integrar a uma outra ferramenta. Atualmente o meu formuçário contem os dados: Nome, Sobrenome, Telefone, E-mail e Mensagem. Como saber posso fazer um DE/PARA de informações? Exemplo: "text": "Nome teste 1" = Nome; "text": "Sobrenome Teste 2" = Sobrenome "answers": [ { "field": { "id": "YRbsEFPHMVtw", "ref": "01FSMN75Y92QAGMJQ0TYGRRTJB", "type": "long_text" }, "type": "text", "text": "Nome teste 1" }, { "field": { "id": "PEbs3j6Akbet", "ref": "01FSMN75YY037K721324GP9K58", "type": "long_text" }, "type": "text", "text": "Sobrenome Teste 2
Hi all,Very new here but I was wondering. Is it possible to integrate the score in a typeform quiz with my website (making on Webflow)?I am designing an online learning platform, and I basically want to find a way that a button on my site (that will show if a course is completed) gets pressed automatically if they get over a certain score, like 60% or higher. Is this possible?
Hi,A friend had the pro account with 5 users, he got downgraded to 1 user because of his company and now (I was one of the 5 users) even my private workspace has disappeared . I had very important surveys going on and I would like to get my access back to them asap how can I do ?
With NextJS I am doing server side rendering and am trying to take advantage of the sdk as the cdn script isn’t playing nice with my NextJS code. However i am getting a babel error with the node_module typeform code. A more detailed description on stack overflow I am getting the following in regards to the typeform sdk. ReferenceError: regeneratorRuntime is not defined Any tips on how to use typeform with nextjs
Hi everyone,Hope you are well ^^We are a wine company : currenlty building a quiz to orientate our customers towards certain wine packages depending on their answers (their tastes, etc).A bit like GPD does (check it out).1) Everything regarding setting up the Quiz is clear (questions, question types, etc) and I also understand that we should use outcomes to direct repondents to the pages we want.You can have a look at our current v1 quiz here, which works :V1 Quiz2) Now our goal is to improve this quiz, which means improving the correspondance between answers and pages directed to. This would mean multiplying the number of pages / outcomes we want to direct the consumers to I guess.As you can see we have a lot of questions in the quiz...In your opinion, what type of Matrix should we use to improve the quiz?Meaning : is there a tool, a technique on Excel we could use. Something that would help the quiz answer to all depending on each of their answers?Let me know if you have an idea or
Hello!We have an SPA where we’re showing a Typeform questionnaire on the home/dashboard page, but we then want to remove the Typeform on navigating to a different page. Typeform generates its own HTML to present the questionnaire:Is there a consistent way that we can use to access this content (something that will be consistent from version to version)? Previously we were using the “typeform-sidetab” class to find it, but now this has changed to “tf-v1-sidetab”, and it might change again in future… Is there a way that we can ID the Typeform-generated div ourselves perhaps? Or is there some clean-up function we can invoke if we want to remove the Typeform HTML when navigating to a different route?
Hi,Is there a way to set a specific value for an answer and not sending the whole Text message displayed on the answer in the form ? For example:Question: Do you like apples ?Yes I like apples No I like bananasI would like that the form send the value “yes” or “no”, and not “Yes I like apples”. Or at least, something like “yes-i-like-apples”.It is common in a lot of systems to have a difference between displayed text and form values, like in HTML elements like in “select options”. Any help on that ?Thank you !
0 I am embedding 2 typeform on my webpage. When I submit 1st typefrom onSubmit function get executed, but onSubmit function of 2nd typeform get called automatically even I submitted the 1st typeform.<div id="my-embedded-typeform1" style="width: 100%; height: 300px;"></div><div id="my-embedded-typeform2" style="width: 100%; height: 300px;"></div><script src="https://embed.typeform.com/embed.js" type="text/javascript"</script> window.addEventListener("DOMContentLoaded", function() { var el = document.getElementById("my-embedded-typeform1"); var el2 = document.getElementById("my-embedded-typeform2"); window.typeformEmbed.makeWidget(el1, "https://admin.typeform.com/to/cVa5IG", { hideFooter: true, onSubmit: () => { alert('Typeform 1 submitted') } });window.typeformEmbed.makeWidget(el2, "https://admin.typeform.com/to/cVa5IG", { hideFooter: true, onSubmit: () => { alert('Typeform 2 submitted') } });
Dear Typeform Team, As a result of reading this thread: I am still unsure how to best verify our subdomain intermittentfasting.typeform.com. Could you please explain if you’re there yet, and if so, how to best set up the verification.
We develop an appointment scheduling solution, and would like to integrate with typeform to display our available diary slots within a typeform (by retrieving the slots from a live database). Is this possible (I’m pretty sure it isn’t), and if not could it be added to the backlog as a feature request?The current appointment or scheduling solutions are pretty limited.Is it possible to integrate our solution to be an application like Calendly?
Greetings!We were thinking of integrating typeform in our portal.The front end is built on angular and backend on ruby on rails.Whenever a user responds to each question in typeform, we want it to be saved in our database as well? Could you please guide us on how to go about this? Thanks and Regards,Preeti
Hi, Can anyone suggest me how to get Typeform mobile application?
Hi, my name is aashish and im a social media manager in Red in the White. I want to do a survey on client database but whenever i tried to send mails from other websites, my mail went into spam so i need Typeform to solve my problem and send my mails to the customer database. Is that possible?
I am wondering if Typeform is able to build an interactive questionnaire that involves the participant in a live questionnaire? In an ajax style, I want to be able to have the users build their own questions around topics that give an optimum result. In other words, training participants to ask questions in the right way? As they type a question, the build expresses through colour whether it is a strong or weak question? I think I know the answer will be a no on Typeform, but does anyone in the community know of anything that might help? Thanks B
I'm trying to accept form responses from Typeform using Python/Django/DRF and am having trouble authenticating the webhook request due to not being able to get the hashes to match.Here are the instructions from Typeform:1. Using the HMAC SHA-256 algorithm, create a hash (using created_token as a key) of the entire received payload as binary.2. Encode the binary hash in base64 format.3. Add prefix sha256= to the binary hash.4. Compare the created value with the signature you received in the Typeform-Signature header from Typeform.authentication.pyclass TypeformAuthentication(authentication.BaseAuthentication): def authenticate(self, request): typeform_signature = request.META.get('HTTP_TYPEFORM_SIGNATURE') data = request.body secret_key = os.environ.get('TYPEFORM_SECRET_KEY') if not typeform_signature: return None if typeform_signature: hash = hmac.new(bytes(secret_key, encoding='utf-8'), data, hashlib.sha256) actua
Hi allI’ve got a curious situation: one of my warm email lists has sprung a nasty! This individual manually fills up my typeform repeatedly and books in my calendly over and over again (using my email address :-D)is there a way to identify and block this person? I can see the networkID but as per the docs the IP address is not stored, and I cant figure out how to ID this person so I can remove them from my list. Thanks very much!Z
I am using a panel database supplier and we need to introduce end pages from the supplier for completes (redirect from the end page), overquotas (i.e. redirect after reaching survey limit to 500 responses) and Screenout (e.g. under 18s). I think I can do the ‘completes’ from the end page but bout welcome confirmation. Also any ideas on overquotas and screenouts?ThanksSergi
Hi, I’ve created simple form submission with consist of Logic jump when user has type something in the form ifcorrect → then go to next page incorrect → go back to input againWhen I check the preview, everything seems working just fine. All logics work correct as expect. But when I use api request to https://api.typeform.com/forms/{formId} it seems not what I expect. The logic field is incorrect. Please see details belowhere is logic portion, { "logic": [ { "type": "field", "ref": "captcha", "actions": [ { "action": "jump", "details": { "to": { "type": "field", "value": "captcha_incorrect_loop" } }, "condition": { "op": "always", "vars": [] } } ] },
Hi Stripers,The most popular debet cards/payment methods in Belgium are Bancontact and Maestro. Those platforms are also validated as payment method in our Stripe account (as well as Apple and Google pay).However, while using the stripe/typeform integration, it seems I can only pay through credit cards (MasterCard, Visa, Amex, JCB and Diner’s Club).Does the typeform/stripe integration only work with these credit cards? Or is there a workaround? Or something I didn’t see/get?Many thanks in advance for any guidance at all.
Hi,Many of Typeform’s APIs require account_id as a parameter. I am specifically interested in the Delete responses API. Where does one find this account_id? I cant seem to find it anywhere in the UI for my account!!!!
Hi ,Trying to delete the responses using the (RTBF) Delete responsesDELETEhttps://api.typeform.com/rtbf/{account_id}/responsesPassed array of email in the body.but receiving 502Bad Gateway error code.Can anyone help on this.
Hello!On my Typeform I have it set up where a person can choose a Home Equity Line of Credit as an option. My CRM is set up to read the transaction type as HELOC and not as a “Home Equity Line of Credit” - How do I set up my typeform to display “Home Equity Line of Credit” as an option, but when it submits the user data, HELOC is entered instead of “Home Equity Line of Credit” so my CRM can read it? Thanks!!
I am running a questionnaire and some of the entries were collected physically in a google sheet, how do I sync the entries with the data in Typeform?I tried integrating the sheet with Zapier but there is no ‘action’ that says “Add Typeform entry”A “new row (trigger) =new entry action)” automation. Please help me.
Don't be shy and ask the community.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.