Skip to main content
PATCH
/
messages
/
{messageId}
JavaScript
import Nuntly from '@nuntly/sdk';

const client = new Nuntly({
  apiKey: process.env['NUNTLY_API_KEY'],
});

const response = await client.messages.update('messageId_value', { /* ... */ });
{
  "data": {
    "id": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://nuntly.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

messageId
string
required

Body

application/json
addLabels
string[]

Labels to add to the message.

removeLabels
string[]

Labels to remove from the message.

Response

Successful response.

data
object
required