WA.cr APP - API v2
  1. Comments
WA.cr APP - API v2
  • API v2 Documentation
    • Account
      • Get Account Info
      • Get Usage Statistics
      • Get Plan Limits
    • Authentication (OTP Verification)
      • Send OTP/Verification Code
      • Resend OTP
      • Verify OTP
      • Check OTP Status
      • List Authentication Templates
    • Comments
      • Get Comments
        GET
      • Add Comment
        POST
    • Contacts
      • List Contacts
      • Create Contact
      • Get Contact
      • Update Contact
      • Delete Contact
      • Batch Create Contacts
      • Batch Delete Contacts
    • Groups
      • List Groups
      • Create Group
      • Get Group
      • Update Group
      • Delete Group
      • Add Contacts to Group
      • Remove Contacts from Group
    • Messages
      • Send Text Message
      • Send Template Message
      • Send Media Message
      • Send Interactive Message
      • List Messages
      • Get Message
    • Sources
      • List Sources
      • Create Source
      • Get Source
      • Update Source
      • Delete Source
    • Statuses
      • List Statuses
      • Create Status
      • Get Status
      • Update Status
      • Delete Status
    • Templates
      • List Templates
      • Sync Templates from WhatsApp
      • Get Template
  1. Comments

Get Comments

GET
/comments/{mobile}
Retrieve all internal notes for a contact by mobile number, ordered by most recent first.

Authentication#

All requests require a valid API token with an active tenant.

Path Parameters#

ParameterTypeRequiredDescription
mobilestringYesContact's mobile number (must match an existing chat conversation)

Response Fields#

FieldTypeDescription
successbooleantrue on success
dataarrayArray of internal note objects
data[].idintegerMessage row ID
data[].messagestringNote text content
data[].typestringMedia type: text, image, audio, video, document
data[].statusstringAlways internal_note
data[].status_messagestringShort label for the note
data[].urlstring|nullStored media filename (if attachment exists)
data[].message_idstring|nullWhatsApp wamid.* of the note
data[].ref_message_idstring|nullWhatsApp wamid.* of the replied-to message
data[].sender_idstringSender phone number (tenant default WhatsApp number)
data[].created_atstringISO 8601 datetime

Error Responses#

StatusDescription
401Token missing or invalid
404Chat conversation not found for the given mobile number
500Chat tables not initialized for tenant

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Responses

🟢200
application/json
Successful response
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/comments/919876543210' \
--header 'Authorization: Bearer <token>'
Response Response Example
{}
Modified at 2026-02-25 01:06:20
Previous
List Authentication Templates
Next
Add Comment
Built with