Kantata Kantata OX Knowledge Base
Release Notes
Status Page

Surveys Responses (Legacy)

Survey Response (Legacy) represents an instance of a particular survey that has been assigned for response.

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

Fetching a list of Survey Responses

This endpoint returns structured Survey Response 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_responses top-level JSON key. Please see our Response Format section for more information.

Request
query Parameters
created_after
string <date-time>

Filter for records created after a specified datetime. The datetime must be in ISO 8601 format.

created_before
string <date-time>

Filter for records created before a specified datetime. The datetime must be in ISO 8601 format.

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.

  • external_references (ExternalReference) - Includes references to external integrations for this object.
  • owner (User) - The user who owns the survey response.
  • respondent (User) - The user assigned to complete the survey response.
  • subject (polymorphic) - The subject of the survey.
  • survey_answers (SurveyAnswer) - The survey answers associated with the response.
  • survey_template (SurveyTemplate) - The template that the survey response is based on.
  • workspace (Workspace) - The workspace the survey is related 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.

owner_id
integer <int32>

Filter results by responses with a particular owner.

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

Filter results by responses with a particular respondent.

status
string

Filter results by responses with a particular status.

subject_id
integer <int32>

Filter results by responses with a particular subject id. Note: This should always be combined with the subject_type filter.

subject_type
string

Filter results by responses with a particular subject type.

survey_template_id
integer <int32>

Filter results by responses that were created from a particular survey template.

updated_after
string <date-time>

Filter for records updated after a specified datetime. The datetime must be in ISO 8601 format.

updated_before
string <date-time>

Filter for records updated before a specified datetime. The datetime must be in ISO 8601 format.

without_external_reference_service_name
string

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

workspace_id
integer <int32>

Filter results by responses for a particular workspace.

Responses
200

A list of Survey Responses have been retrieved.

Response Schema: application/json
count
integer <int32>
object
Array of objects
object
object
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_responses
Request samples
Response samples
application/json
{
  • "count": 0,
  • "meta": {
    },
  • "results": [
    ],
  • "survey_responses": {
    },
  • "external_references": {
    },
  • "survey_templates": {
    },
  • "survey_answers": {
    },
  • "users": {
    },
  • "workspaces": {
    }
}

Creating a new Survey Response

This endpoint returns structured Survey Response 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_responses 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.

  • external_references (ExternalReference) - Includes references to external integrations for this object.
  • owner (User) - The user who owns the survey response.
  • respondent (User) - The user assigned to complete the survey response.
  • subject (polymorphic) - The subject of the survey.
  • survey_answers (SurveyAnswer) - The survey answers associated with the response.
  • survey_template (SurveyTemplate) - The template that the survey response is based on.
  • workspace (Workspace) - The workspace the survey is related to.
Request Body schema: application/json
required
object
survey_template_id
required
integer <int32>

The template that the survey response is based on.

title
string

The title of the survey.

description
string

The description of the survey.

status
string

The status of the survey response.

subject_type
string

The subject type of the survey. Valid values: User, Story, Workspace.

subject_id
integer <int32>

The Id of the survey subject.

owner_id
integer <int32>

The user who owns the survey response.

respondent_id
integer <int32>

The user assigned to complete the survey response.

workspace_id
integer <int32>

The workspace the survey is related to.

open_date
string <date>

The open date for this survey. The date must be in ISO 8601 format.

close_date
string <date>

The close date for this survey. The date must be in ISO 8601 format.

due_date
string <date>

The due date for this survey. The date must be in ISO 8601 format.

Responses
200

Survey Response has been created.

Response Schema: application/json
count
integer <int32>
object
Array of objects
object
object
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_responses
Request samples
application/json
{
  • "survey_response": {
    }
}
Response samples
application/json
{
  • "count": 0,
  • "meta": {
    },
  • "results": [
    ],
  • "survey_responses": {
    },
  • "external_references": {
    },
  • "survey_templates": {
    },
  • "survey_answers": {
    },
  • "users": {
    },
  • "workspaces": {
    }
}

Updating an existing Survey Response

This endpoint returns structured Survey Response 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_responses 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.

  • external_references (ExternalReference) - Includes references to external integrations for this object.
  • owner (User) - The user who owns the survey response.
  • respondent (User) - The user assigned to complete the survey response.
  • subject (polymorphic) - The subject of the survey.
  • survey_answers (SurveyAnswer) - The survey answers associated with the response.
  • survey_template (SurveyTemplate) - The template that the survey response is based on.
  • workspace (Workspace) - The workspace the survey is related to.
Request Body schema: application/json
required
object
title
string

The title of the survey.

description
string

The description of the survey.

status
string

The status of the survey response.

owner_id
integer <int32>

The user who owns the survey response.

open_date
string <date>

The open date for this survey. The date must be in ISO 8601 format.

close_date
string <date>

The close date for this survey. The date must be in ISO 8601 format.

due_date
string <date>

The due date for this survey. The date must be in ISO 8601 format.

Responses
200

Survey Response has been updated.

Response Schema: application/json
count
integer <int32>
object
Array of objects
object
object
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_responses/{id}
Request samples
application/json
{
  • "survey_response": {
    }
}
Response samples
application/json
{
  • "count": 0,
  • "meta": {
    },
  • "results": [
    ],
  • "survey_responses": {
    },
  • "external_references": {
    },
  • "survey_templates": {
    },
  • "survey_answers": {
    },
  • "users": {
    },
  • "workspaces": {
    }
}

Deleting an existing Survey Response

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 Response 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_responses/{id}
Request samples
Response samples
application/json
{
  • "errors": [
    ]
}