Kantata Kantata OX Knowledge Base
Release Notes
Status Page

Survey Answers (Legacy)

Survey Answers (Legacy) appear on and can be responded to through surveys. Survey Answers (Legacy) are required to have a value for the answer (i.e. answers must have at least one choice selected or a non-null value). Additionally, only one value type can be specified for the answer (e.g. specifying a date value as well as choice values is invalid).

Note: This feature requires the Surveys (Legacy) account add-on. This feature is unrelated to Pulse surveys.

Fetching a list of Survey Answers

This endpoint returns structured Survey Answer objects. As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results array and will be indexed by ID in the survey_answers top-level JSON key. Please see our Response Format section for more information.

Request
query Parameters
external_reference_external_message
string

Filter the objects based on the external message of their associated external references. This is an exact match.

external_reference_external_status
string

Filter by the status of the external object in the external system.

external_reference_service_model
string

Filter by the type of the external object this external reference belongs to.

external_reference_service_model_ref
integer <int32>

Filter by the id of the external object this external reference belongs to.

external_reference_service_model_refs
string

Filter for objects that correlate to the specified external object IDs. Provide a comma-separated list of up to 200 external IDs.

external_reference_service_name
string

Filter by the name of the provider for integration.

external_reference_status
string

Filter by the status of the integration, this can be successful or fail.

has_external_references
boolean

Filter by whether or not the object has external references.

include
string

Any of the below associations can be included in your request by providing the include param, e.g. include=association1,association2.

  • choices (SurveyQuestionChoice) - The selected choices associated with an answer. Only populated on single or multi choice answers.
  • external_references (ExternalReference) - Includes references to external integrations for this object.
  • survey_question (SurveyQuestion) - The question that the answer is directed at.
  • survey_response (SurveyResponse) - The response that the answer is tied to.
only
string

Allows you to request one or more resources directly by ID. Multiple IDs can be supplied in a comma separated list, like GET /api/v1/workspaces.json?only=5,6,7.

order
string
Default: "updated_at:desc"

Supply order with the name of a valid sort field for the endpoint and a direction.

Valid values: created_at:asc, created_at:desc, updated_at:asc, and updated_at:desc.

page
integer <int32>
Default: 1
per_page
integer <int32> <= 200
Default: 20
survey_response_id
integer <int32>

Filter results by answers for a particular response.

without_external_reference_service_name
string

Exclude by the existence of an external reference with the specified service name.

Responses
200

A list of Survey Answers have been retrieved.

Response Schema: application/json
count
integer <int32>
object
Array of objects
object
object
object
object
400

Bad Request

401

Unauthorized request

403

Forbidden request

404

Page Not Found

422

Unprocessable Entity

503

Service is unavailable

get/survey_answers
Request samples
Response samples
application/json
{
  • "count": 0,
  • "meta": {
    },
  • "results": [
    ],
  • "survey_answers": {
    },
  • "external_references": {
    },
  • "survey_questions": {
    },
  • "survey_responses": {
    }
}

Creating a new Survey Answer

This endpoint returns structured Survey Answer objects. As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results array and will be indexed by ID in the survey_answers top-level JSON key. Please see our Response Format section for more information.

Request
query Parameters
include
string

Any of the below associations can be included in your request by providing the include param, e.g. include=association1,association2.

  • choices (SurveyQuestionChoice) - The selected choices associated with an answer. Only populated on single or multi choice answers.
  • external_references (ExternalReference) - Includes references to external integrations for this object.
  • survey_question (SurveyQuestion) - The question that the answer is directed at.
  • survey_response (SurveyResponse) - The response that the answer is tied to.
Request Body schema: application/json
required
object
survey_response_id
required
integer <int32>

Survey Response associated with the answer.

survey_question_id
required
integer <int32>

Survey Question that is being answered.

date_value
string <date>

The date value for the answer. The date must be in ISO 8601 format.

string_value
string

The string value for the answer.

integer_value
integer <int32>

The integer value for the answer.

decimal_value
number <float>

The decimal value for the answer.

choice_values
Array of strings

An array of choice values for the answer.

choice_ids
Array of integers <int32>

An array of choice ids for the answer.

Responses
200

Survey Answer has been created.

Response Schema: application/json
count
integer <int32>
object
Array of objects
object
object
object
object
400

Bad Request

401

Unauthorized request

403

Forbidden request

404

Page Not Found

422

Unprocessable Entity

503

Service is unavailable

post/survey_answers
Request samples
application/json
{
  • "survey_answer": {
    }
}
Response samples
application/json
{
  • "count": 0,
  • "meta": {
    },
  • "results": [
    ],
  • "survey_answers": {
    },
  • "external_references": {
    },
  • "survey_questions": {
    },
  • "survey_responses": {
    }
}

Updating an existing Survey Answer

This endpoint returns structured Survey Answer objects. As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results array and will be indexed by ID in the survey_answers top-level JSON key. Please see our Response Format section for more information.

Request
path Parameters
id
required
integer

The ID of the Model.

query Parameters
include
string

Any of the below associations can be included in your request by providing the include param, e.g. include=association1,association2.

  • choices (SurveyQuestionChoice) - The selected choices associated with an answer. Only populated on single or multi choice answers.
  • external_references (ExternalReference) - Includes references to external integrations for this object.
  • survey_question (SurveyQuestion) - The question that the answer is directed at.
  • survey_response (SurveyResponse) - The response that the answer is tied to.
Request Body schema: application/json
required
object
date_value
string <date>

The date value for the answer. The date must be in ISO 8601 format.

string_value
string

The string value for the answer.

integer_value
integer <int32>

The integer value for the answer.

decimal_value
number <float>

The decimal value for the answer.

choice_values
Array of strings

An array of choice values for the answer.

choice_ids
Array of integers <int32>

An array of choice ids for the answer.

Responses
200

Survey Answer has been updated.

Response Schema: application/json
count
integer <int32>
object
Array of objects
object
object
object
object
400

Bad Request

401

Unauthorized request

403

Forbidden request

404

Page Not Found

422

Unprocessable Entity

503

Service is unavailable

put/survey_answers/{id}
Request samples
application/json
{
  • "survey_answer": {
    }
}
Response samples
application/json
{
  • "count": 0,
  • "meta": {
    },
  • "results": [
    ],
  • "survey_answers": {
    },
  • "external_references": {
    },
  • "survey_questions": {
    },
  • "survey_responses": {
    }
}

Deleting an existing Survey Answer

The response will contain no content and an HTTP 204 status code if the request was successful, or a standard Kantata OX error message explaining why the object could not be deleted.

Request
path Parameters
id
required
integer

The ID of the Model.

Responses
204

Survey Answer has been deleted.

400

Bad Request

401

Unauthorized request

403

Forbidden request

404

Page Not Found

422

Unprocessable Entity

503

Service is unavailable

delete/survey_answers/{id}
Request samples
Response samples
application/json
{
  • "errors": [
    ]
}