Get survey report

Get Survey Report

Returns detailed information about a specified survey report.

Endpoint

GET v5/survey/{survey_id}/surveyreport/{report_id}

Requires authentication

Path Parameters

survey_id
string
required
The ID of the survey the report belongs to.
report_id
string
required
The ID of the report to retrieve.

Query Parameters

None

Response

Returns a single report object.

result_ok
boolean
Whether the request succeeded.
data
object
The report object.

Examples

Request (cURL)
curl -X GET "https://api.alchemer.com/v5/survey/123456/surveyreport/1234567?api_token=YOUR_API_TOKEN&api_token_secret=YOUR_API_TOKEN_SECRET"
Response
{
  "result_ok": true,
  "data": {
    "id": 1234567,
    "title": "Profile Report - Q1",
    "type": "report_profile",
    "created_on": "2018-03-28 12:56:04",
    "modified_on": "2018-03-28 13:02:14",
    "created_by": "12345",
    "modified_by": "12345",
    "last_run": null,
    "published": "False",
    "password_protected": "0",
    "filters": {
      "filter": null,
      "filter_map": ":5abbca8e95f9e,5abbca8e96048"
    },
    "publish_links": "https://app.alchemer.com/reportsview/?key=12345",
    "scheduled": {
      "type": null,
      "status": null,
      "next_run": null,
      "last_run": null,
      "recurring": null
    }
  }
}