Overview
Accessing specific action details via the API requires elevated permissions and cannot be tested using the API Explorer. This article provides guidance on how to use the endpoint, the necessary permissions, and a sample request and response.
Information
Cannot Test This Endpoint!
Due to the type of permission required, this endpoint is not testable in the API Explorer. However, you can see the actual response you would have received in the Sample Response below. A user must be part of the Super Users group; the test user, answerhub, is not part of that group.
You can use the following parameters in your action information request:
Projection: include, exclude, includeOnly
Other options: wrap, v1
Permissions & Notes:
-
You must have the View analytics permission under Site Administration Roles in the Advanced Editor and be part of the "Super Users" group.
-
To discover your actionId, you need to first perform the GET request, "Retrieve Action List."
- The URI/URL parameter actionId is a placeholder for the actual identifier of the action.
- You should format it as a valid integer (digit characters only).
-
With the includeOnly parameter set to id and name (/services/v2/action/[actionID].json?includeOnly=id,name) to the AnswerHub REST API.
A GET action information request for the the action (actionId: 1143) sent to https://apidocs.cloud.answerhub.com using a human-readable Username/Password (answerhub/test123) would look like this:
- cURL
curl
-u answerhub:test123
-H "Accept: application/json"
-H "Content-type: application/json"
-X GET "https://apidocs.cloud.answerhub.com/services/v2/action/1143.json"
Successful Response:
- HTTP Status 200 - OK
- Sample Formatted JSON Response
Idea to have a reply posted to it through the API.
Idea to have a reply posted to it through the API.
{
"id": 1143,
"ip": "172.18.0.3",
"user": {
"id": 108,
"username": "admin",
"reputation": 91
},
"actionDate": 1550516867000,
"canceled": false,
"privateAction": false,
"verb": "commented",
"node": {
"id": 858,
"type": "idea-comment",
"creationDate": 1550516867000,
"creationDateFormatted": "02/18/2019 07:07 PM",
"body": "
Body of your comment as a response to an idea
", "bodyAsHTML": "
Body of your comment as a response to an idea
", "author": { "id": 108, "username": "admin", "reputation": 91 }, "lastEditedAction": 1143, "activeRevisionId": 870, "revisionIds": [ 870 ], "lastActiveUserId": 108, "lastActiveDate": 1550516867000, "originalParentId": 857, "attachments": [], "childrenIds": [], "commentIds": [], "marked": false, "topics": [], "containerIds": [], "wiki": false, "score": 0, "depth": 0, "viewCount": 0, "upVoteCount": 0, "downVoteCount": 0, "nodeStates": [] }, "rootNode": { "id": 857, "type": "idea", "creationDate": 1550516642000, "creationDateFormatted": "02/18/2019 07:04 PM", "title": "Post a Reply to an Idea Test", "body": "
Idea to have a reply posted to it through the API.
",
Priyanka Bhotika
Comments