Skip to content

demipel8/typeform-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#typeform-js

typeform client for node and the browser

##Installation

clone this repo

##Usage

import (ES6) or require the package and set your API-key for authentication. Every method of the library returns a promise tha will be fulfilled with typeform.io's response.

src folder contain the ES6 version. dist folder contains the ES5 version.

import Typeform from 'typeform-js';

let typeform = Typeform('MY_API_SECRET');

##Available endpoints

###base

The base endpoint response contains information about the API.

example

typeform.base().then( res => console.log(res));

###forms

####Create a form

arguments:

Command Type Optional Description
Title string no form title
Fields array no form fields
Extra object yes extra options

example

typeform.form( "My first typeform",
    [
        {
            "type": "short_text",
            "question": "What is your name?"
        }
    ],
	{ "branding": false }
);

####Get a form

arguments:

Command Type Optional Description
Id string no form id

example:

typeform.form.get( 'id' );

###images

####send an image

arguments:

Command Type Optional Description
Url string no url to sent

example

typeform.image( "http://MY_IMAGE.URL");

####Get an image

arguments:

Command Type Optional Description
Id string no image id

example:

typeform.image.get( 'id' );

###designs

####Create a design

arguments:

Command Type Optional Description
Colors object no design colors
Font string no google web font for this design

example

typeform.design({
        "question": "#3D3D3D",
        "button": "#4FB0AE",
        "answer": "#4FB0AE",
        "background": "#FFFFFF"
    },
    'Playfair'
);

####Get a design

arguments:

Command Type Optional Description
Id string no design id

example:

typeform.design.get( 'id' );

###urls

####Create a new url

arguments:

Command Type Optional Description
form_id object no actual id

example

typeform.url('anId');

####Get a url

arguments:

Command Type Optional Description
Id string no url id

example:

typeform.url.get( 'id' );

###Get a url

arguments:

Command Type Optional Description
Old_id string no current url id
New_id string no new url id

example:

typeform.url.set( 'id', 'newSuperCoolId' );

#TODO

  • fields Objects?

About

typeform client for node and the browser

Resources

License

Stars

Watchers

Forks

Packages

No packages published