Nifteem
  1. Nifteem API
Nifteem
  • Nifteem API
    • Dispatch Messages
      • Request a message dispatch
      • Dispatch messages info
      • Cancel a message dispatch
    • Manage templates
      • Get all templates
    • User
      • User Information
    • Webhook for message status updates
    • Webhook for incoming message notification
    • Schemas
      • Channel
      • DispatchLogStatus
      • WebhookOutDispatchStatusPayload
      • WebhookOutEvent
      • WebhookOutModule
      • InMessageType
      • WebhookOutIncomingMessageDetailPayload
      • WebhookOutIncomingMessagePayload
      • ChannelIdentifierType
      • DispatchApiRequest
      • DispatchApiRequestChannelRcs
      • DispatchApiRequestChannelSms
      • DispatchApiRequestChannelWhatsapp
      • DispatchApiRequestChannels
      • DispatchApiRequestContent
      • DispatchApiRequestMessage
      • DispatchApiRequestMessageContentDocument
      • DispatchApiRequestMessageContentImage
      • DispatchApiRequestMessageContentText
      • DispatchApiRequestMessageContentVideo
      • DispatchApiRequestMessageTemplate
      • DispatchApiRequestRecipient
      • DispatchApiRequestRecipientIdentifier
      • DispatchApiRequestTranslation
      • SmsEncodingType
      • Template
      • TemplateApi
      • DispatchApi
      • DispatchApiMessage
      • DispatchApiMessageStatus
  1. Nifteem API

Webhook for incoming message notification

Webhook
POST
Incoming Message Notification
This webhook is triggered when the a new message is received.

Request

Authorization
API Key
Add parameter in header
X-API-Key
Example:
X-API-Key: ********************
or
Body Params */*Required

Examples

Responses

🟢200
Callback received successfully
This response does not have a body.
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://your-api-server.com' \
--header 'X-API-Key: <api-key>' \
--header 'Content-Type: */*' \
--data-raw '{
    "event": "INCOMING_MESSAGE",
    "sentDate": "2025-11-07T16:08:08Z",
    "sender": "agentSender",
    "channel": "RCS",
    "channelIdentifier": "+393470000000",
    "message": {
        "type": "TEXT",
        "text": "ok"
    }
}'
Modified at 2026-01-24 07:01:45
Previous
Webhook for message status updates
Next
Channel
Built with