Confirm that message with a particular UID exists.

Request Fields

These are passed in at the top level of the request.

Key Type Description
uid string Message to verify.

Request Example

{
  "api_key" : "PROJECT_API_KEY",
  "uid" : "uid_of_the_message"
}

Response 200 OK

{
  "response" : {
    "uid" : "uid_of_the_message",
    "status" : "ok"
  },
  "data" : {
    "message" : {
      "id" : "1234567890"
    }
  }
}

Error 404 Not Found

{
  "response" : {
    "status" : "not_found",
    "uid" : "uid_of_the_message"
  }
}