action tsapi_get_surveys_survey_id_interviews { label: "Fetches some interview records for a specific survey" provider: tsapi method: GET path: "/Surveys/{surveyId}/Interviews" encoding: json input: { type: "object" properties: { maxLength: { type: "integer" format: "int32" } start: { type: "integer" format: "int32" } surveyId: { type: "string" format: "uuid" } } required: ["surveyId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { dataItems: { type: "array" items: { type: "object" properties: { ident: { type: "string" } parentIdent: { type: "object" } values: { type: "array" items: { type: "string" } } } additionalProperties: false } } hierarchicalInterviews: { type: "array" items: { type: "object" properties: { dataItems: { type: "array" items: { type: "object" additionalProperties: true } } hierarchicalInterviews: { type: "array" items: { type: "object" additionalProperties: true } } ident: { type: "string" } level: { type: "object" } } additionalProperties: false } } ident: { type: "string" } } additionalProperties: false } } }