Start a conversation

Update a Survey

Overview


Information

/services/v2/node/{node}/survey/{survey}.json

Permissions & Notes:

There is no permission required to make this API request.

The example below depicts a request to update the survey with an ID of 321 for the question node with an ID of 123.

  • cURL
curl -u "answerhub:test123" -H "Accept: application/json" -H "Content-type: application/json" -X PUT -d '{ “title”:<string required>, “deadline”:<date ISO format>, “elements”: [ {"content”:<string required>} ]}' "https://apidocs.cloud.answerhub.com/services/v2/node/123/survey/321.json" -v
curl 
-u "answerhub:test123" 
-H "Accept: application/json" 
-H "Content-type: application/json" 
-X PUT 
-d '{ “title”:<string required>, “deadline”:<date ISO format>, “elements”: [ {"content”:<string required>} ]}' "https://apidocs.cloud.answerhub.com/services/v2/node/123/survey/321.json" -v

Successful Response

HTTP Status: 202

  • JSON
{ “id”:<long id>, “creationDate”:<>, “modificationDate”:<>, “title”:"<string>", “deadline”:<date>, “surveyElement”:[ { “content”:"<string>", “id”:<long> } ] }
{
   “id”:<long id>,
   “creationDate”:<>,
   “modificationDate”:<>,
   “title”:"<string>",
   “deadline”:<date>,
   “surveyElement”:[
      {
         “content”:"<string>",
         “id”:<long>
      }
   ]
}

Expected Error Responses

There are 5 different error responses shown below, each in a different tab. They all have an HTTP Status 400.

  • Example Error 1
  • Example Error 2
  • Example Error 3
  • Example Error 4
  • Example Error 5
400: {“error”:”Node already has a survey”}
400: {“error”:”Node already has a survey”}  
400: {“error”:”Deadline date not set.”}
400: {“error”:”Deadline date not set.} 
400: {“error”:”Deadline date cannot be in the past.”}
400: {“error”:”Deadline date cannot be in the past.}
400: {“error”:”Survey title cannot be empty.”}
400: {“error”:”Survey title cannot be empty.} 
400: {“error”:”There should be at least 2 Survey elements and no more than 5.”}
400: {“error”:”There should be at least 2 Survey elements and no more than 5.}
Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. Priyanka Bhotika

  2. Posted

Comments