Skip to content
Ryan Christiani edited this page Nov 19, 2015 · 17 revisions

##Authentication All routes require you to be authorized. Make a GET request to /v1/user/authenticate to get your token. Ever authenticated route requires a x-access-token header with your token sent.

###/v1/topic GET Get all topics

Params Value Description
token : string token Token received from authentication.

###/v1/topic POST Create topic

Params Value Description
token : string token Token received from authentication.

###/v1/topic/:topicId GET Get specific topic

Params Value Description
token : string token Token received from authentication.

###/v1/topic/:topicId PUT Update specific topic

Params Value Description
token : string token Token received from authentication.

###/v1/topic/:topicId DELETE Delete specific topic

Params Value Description
token : string token Token received from authentication.
Clone this wiki locally