Skip to main content
POST
/
issues
/
{id}
/
messages
/
{message_id}
/
redact
cURL
curl --request POST \
  --url https://api.usepylon.com/issues/{id}/messages/{message_id}/redact \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "author": {
      "avatar_url": "<string>",
      "contact": {
        "email": "<string>",
        "id": "<string>"
      },
      "name": "<string>",
      "user": {
        "email": "<string>",
        "id": "<string>"
      }
    },
    "email_info": {
      "bcc_emails": [
        "<string>"
      ],
      "cc_emails": [
        "<string>"
      ],
      "from_email": "<string>",
      "to_emails": [
        "<string>"
      ]
    },
    "file_urls": [
      "<string>"
    ],
    "id": "<string>",
    "is_private": true,
    "message_html": "<string>",
    "source": "<string>",
    "thread_id": "<string>",
    "timestamp": "<string>"
  },
  "request_id": "<string>"
}

Authorizations

Authorization
string
header
required

Authorization: Bearer

Path Parameters

id
string
required

The ID of the issue that the message belongs to.

message_id
string
required

The ID of the message to redact.

Response

data
object
request_id
string

The request ID for tracking.