typeform-python-sdk icon indicating copy to clipboard operation
typeform-python-sdk copied to clipboard

Typeform Python API client

Results 15 typeform-python-sdk issues
Sort by recently updated
recently updated
newest added
trafficstars

## Description: When providing an incorect request body, the error messge is not descriptive enough. Example: ``` from typeform import Typeform r = Typeform("XXXXXXXX").forms.create(data={ "title": "Incorrect form payload", "type": "quiz",...

Are we interested in a method which pulls responses in the format below. ```` { 'question name':'answer' } ```` This seems a lot easier for developing with the typeform responses...

Following the docs, I can't get the following to work: ``` forms = Typeform('').forms result: str = forms.update('abc123', { 'title': 'Hello World, Again' }, patch=True) ``` I get a 'The...

The [documentation](https://developer.typeform.com/responses/reference/retrieve-responses/) mentions an `excluded_response_id` field but the param doesn't seem to be available. In fact it's not showing [here](https://github.com/Typeform/typeform-python-sdk/blob/78816908f1b7bcc25ee473afc7ed81005a13d68f/typeform/responses.py#L26). My use case is to retrieve only the responses that...

adds support for the Webhooks API: list, get, create/update & delete

Any chance we can add the webhooks API into this SDK as well? Seems like it'd follow the same structure as the others.

Hello, I've been able to play around with the data using the query methods but I was wondering how one might go updating question fields using orms_object.update(i.id, {"fields": payload},patch=True), I...

The current test suite deletes all your forms in your account. Double-check everything runs on mock servers.

bug