SupportWire API
API ReferenceMessages

Update message

Required scope: `messages:write`. Authors may edit their own messages only.

PATCH
/api/oauth/v1/conversations/{conversation_id}/messages/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

OAuth access token, e.g. Authorization: Bearer swot_….

In: header

Path Parameters

conversation_id*string
id*string

Message ID.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X PATCH "https://example.com/api/oauth/v1/conversations/string/messages/string" \  -H "Content-Type: application/json" \  -d '{}'
{
  "data": {
    "id": "string",
    "conversation_id": "string",
    "source": "string",
    "is_spam": true,
    "inserted_at": 0,
    "body_html": "string",
    "marked_as_solution_at": 0,
    "user": {
      "id": "string",
      "name": "string",
      "email": "string",
      "instagram_handle": "string",
      "profile_picture_url": "string"
    },
    "meta_info": {},
    "is_ai_message": true,
    "reply_to": {
      "id": "string",
      "body_html": "string",
      "user": {
        "id": "string",
        "name": "string",
        "email": "string",
        "instagram_handle": "string",
        "profile_picture_url": "string"
      }
    },
    "attachments": [
      {
        "id": "string",
        "presigned_url": "string",
        "original_filename": "string",
        "extension": "string",
        "file_size": 0,
        "resource_type": "string",
        "resource_id": "string"
      }
    ]
  }
}
{
  "error": "insufficient_scope",
  "error_description": "The token is missing a required scope."
}