Skip to content

Instantly share code, notes, and snippets.

@kennethkoontz
Last active September 2, 2020 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kennethkoontz/a928ecead3b1aec62d68489498be4ae7 to your computer and use it in GitHub Desktop.
Save kennethkoontz/a928ecead3b1aec62d68489498be4ae7 to your computer and use it in GitHub Desktop.
API Details

Hubux API

List Respondents

https://data.hubux.com/api/v1/respondents

Lists all respondents.

Example (CURL)

curl --location --request GET 'https://data.hubux.com/api/v1/respondents' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>'

Get Respondent

https://data.hubux.com/api/v1/respondents/<respondent_id>

Get respondent details by respondent_id.

Example (CURL)

curl --location --request GET 'https://data.hubux.com/api/v1/respondents/<respondent_id>' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment