Shubham Takode
Shubham Takode

Reputation: 533

Is it possible to edit surveys using FluidSurveys API?

I want to build custom application using FluidSuvery APIs. I had read whole documentation of FluidSurvey API, but not found API call to edit already created survey. By edit survey I mean one should able to edit questions, options associated with questions etc.

Upvotes: 0

Views: 68

Answers (1)

Adam Klockars
Adam Klockars

Reputation: 301

  • GET /api/v3/surveys/{survey_id}/structure/ will return the entire survey JSON
  • PUT /api/v3/surveys/{survey_id}/structure/ with {"structure": value_from_GET} will update

There's no documentation on the JSON structure, and it's not covered by support, but feel free to use the UI and API to figure it out.

Upvotes: 1

Related Questions