Developer Documentation Library > Interviewer - Server > Architecture > Web Service tier > Interview Web Service > Interview Web Service interface
 
Interview Web Service interface
This section describes the web service interface in more detail. The design follows Microsoft’s guide to design REST web services:
http://msdn.microsoft.com/en-us/library/dd203052.aspx
URLs
Following the concept of REST, a number of different URL formats are defined to represent the various resources (surveys, interviews, questions, functions, and so on). The following URL formats are supported:
/surveys/PROJECT
/api/version
/api/surveys/PROJECT
/api/surveys/PROJECT/image_cache_url
/api/interviews/ENGINE/PROJECT/authentication
/api/interviews/ENGINE/PROJECT/files/FILENAME
/api/interviews/ENGINE/PROJECT/routing/questions/SAVEPOINT
/api/interviews/ENGINE/PROJECT/functions/FUNCNAME
The lower case names in the URLs represent fixed URL components while the upper case names can be replaced with the relevant resource name.
See
/surveys/PROJECT
/api/version
/api/surveys/PROJECT
/api/surveys/PROJECT/image_cache_url
/api/interviews/ENGINE/PROJECT/authentication
/api/interviews/ENGINE/PROJECT/files/FILENAME
/api/interviews/ENGINE/PROJECT/routing/questions/SAVEPOINT
/api/interviews/ENGINE/PROJECT/functions/FUNCNAME
See also
Interview Web Service