Skip to content

Reply to a Data Point

Request

Reply with a text to a Data Point, e.g. a review

Security
X-API-KEY or Authorization
Path
idstringrequired

The uberall unique ID of the data point you want to reply to

Query
replystringrequired

The text you want to reply, on most directories this will be published and can be read by the author of the original data point

curl -i -X PATCH \
  'https://uberall.com/api/data-points/{id}/reply?reply=string' \
  -H 'X-API-KEY: YOUR_API_KEY_HERE'

Responses

Reply sent

Body*/*
statusstringrequired
Enum:"SUCCESS""PENDING""QUOTA_LIMIT_EXCEED""NOT_AUTHORIZED""FORBIDDEN""BAD_ACCESS_TOKEN""BAD_PRIVATE_KEY""BAD_PUBLIC_KEY""MISSING_PARAMETER""INVALID_PARAMETER"
messagestring

(optional) Holds further information about the response

warningsArray of strings

(optional) Holds further warnings

responseobjectrequired

The actual response object of the response

Response
{
  "status": "SUCCESS",
  "message": "string",
  "warnings": [
    "string"
  ],
  "response": {
    "dataPoint": {
      "id": 0,
      "type": "REVIEW",
      "directoryType": "FOURSQUARE",
      "status": "VALID",
      "data": "string",
      "secondaryData": "text content on instagram pictures",
      "externalId": "string",
      "author": "string",
      "authorImage": "string",
      "directLink": "string",
      "rating": 0.1,
      "actionDate": "2019-08-24T14:15:22Z",
      "threadActionDate": "2019-08-24T14:15:22Z",
      "dateCreated": "2019-08-24T14:15:22Z",
      "lastUpdated": "2019-08-24T14:15:22Z",
      "lastChecked": "2019-08-24T14:15:22Z",
      "countLikes": 0,
      "countComments": 0,
      "countViews": 0,
      "liked": true,
      "flagged": true,
      "read": true,
      "actionDateGroup": "string",
      "repliedByOwner": true,
      "replyUserId": 0,
      "comments": [
        {
          "id": 0,
          "type": "REVIEW",
          "directoryType": "FOURSQUARE",
          "status": "VALID",
          "data": "string",
          "secondaryData": "text content on instagram pictures",
          "externalId": "string",
          "author": "string",
          "authorImage": "string",
          "directLink": "string",
          "rating": 0.1,
          "actionDate": "2019-08-24T14:15:22Z",
          "threadActionDate": "2019-08-24T14:15:22Z",
          "dateCreated": "2019-08-24T14:15:22Z",
          "lastUpdated": "2019-08-24T14:15:22Z",
          "lastChecked": "2019-08-24T14:15:22Z",
          "countLikes": 0,
          "countComments": 0,
          "countViews": 0,
          "liked": true,
          "flagged": true,
          "read": true,
          "actionDateGroup": "string",
          "repliedByOwner": true,
          "replyUserId": 0,
          "comments": [
            {}
          ],
          "replyByOwner": true,
          "reviewPolicyUrl": "string",
          "parentId": 0,
          "locationId": 0,
          "connectStatus": "string",
          "supportsReply": true,
          "supportsLike": true,
          "supportsUnlike": true,
          "supportedFlagTypes": [
            "OFFENSIVE"
          ],
          "hasRepliesInApprovalNeeded": true,
          "approvalNeeded": true,
          "replyMaxLength": 0,
          "recommended": true
        }
      ],
      "replyByOwner": true,
      "reviewPolicyUrl": "string",
      "parentId": 0,
      "locationId": 0,
      "connectStatus": "string",
      "supportsReply": true,
      "supportsLike": true,
      "supportsUnlike": true,
      "supportedFlagTypes": [
        "OFFENSIVE"
      ],
      "hasRepliesInApprovalNeeded": true,
      "approvalNeeded": true,
      "replyMaxLength": 0,
      "recommended": true
    }
  }
}