VeloConnect CPaaS API
  1. whatsapp-conversations
VeloConnect CPaaS API
  • VeloConnect
    • WhatsApp
      • Whatsapp-campaigns
        • Creates a new campaign
        • Returns campaigns
      • whatsapp-contact-lists
        • {id}
          • Contacts
            • Creates new contacts
            • Returns contacts
          • Whats App Partners Delete Whats App Contact List
        • Creates a new contact list
        • Returns contact lists
      • whatsapp-contacts
        • Updates contacts
        • Deletes contacts with specified Ids
      • whatsapp-templates
        • {id}
          • Deletes template
        • Creates new template
        • Returns templates
      • whatsapp-messages
        • Sends a message
      • whatsapp-conversations
        • {id}
          • messages
            • Returns conversation messages
        • Returns conversations
          GET
      • senders
        • Returns sender ids
    • GetSenderIDList
      • Get senderId's list.
      • Get senderId's list.
    • SenderIDStatus
      • SenderId status.
      • SenderId status.
    • AddContact
      • Add contact to contact list.
      • Add contact to contact list.
    • DeleteContact
      • Delete contact to contact list.
      • Delete contact to contact list.
    • SendSMS
      • Send SMS.
      • Send SMS.
    • SendSMSMulti
      • Send SMS multi.
      • Send SMS multi.
    • Verify
      • Send verification SMS.
      • Send verification SMS.
    • VerifyStatus
      • Verify OTP code.
      • Verify OTP code.
    • Viber Business Messaging
      • OTP
        • OTP Templates
          • Get OTP Templates
        • OTP Message
          • Send OTP
      • Viber Templates
        • Create template
        • Delete Template
        • Get Template
        • List templates
      • Campaign
        • New Campaign
        • Returns Campaigns
      • Contact Lists
        • New contact list
        • Returns contact lists
        • Deletes contact list with specified ID
        • New contact
        • Updates contacts
        • Delete contacts with specified IDs
        • Returns contacts
      • Conversations
        • Returns viber inbox conversations
        • Returns viber conversations messages
        • Sends a Viber message
      • Records
        • Returns the list of viber message data records
        • Returns viber message data record by ID
      • Summaries
        • Return messages summaries
      • Senders
        • Viber Senders
        • Viber Sender by id
    • Cascading
      • New cascading campaign
    • Account
      • CheckBalance
        • Check balance.
        • Check balance.
      • Rat Plans
        • Get Rate plans
      • Get whitelisted IPs
      • Add whitelisted IP
  • VeloPBX
    • Get CDR
      GET
  1. whatsapp-conversations

Returns conversations

GET
/api/partners/whatsapp-conversations

Request

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

Header Params

Responses

🟢200
application/json
Body

🟠400
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'api.velosms.com/api/partners/whatsapp-conversations?PageNumber=&PageSize=' \
--header 'apiId: <string>' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Conversations
{
  "data": [
    {
      "items": [
        {
          "id": "<long>",
          "chatId": "<string>",
          "fromPhoneNumber": "<string>",
          "toPhoneNumber": "<string>",
          "userName": "<string>",
          "message": "<string>",
          "receivedAt": "<dateTime>",
          "campaignId": "<long>",
          "unreadMessagesCount": "<integer>",
          "whatsAppMedias": [
            {
              "id": "<long>",
              "key": "<string>",
              "url": "<string>"
            },
            {
              "id": "<long>",
              "key": "<string>",
              "url": "<string>"
            }
          ],
          "lastMessage": {
            "value": "<Circular reference to #/components/schemas/WhatsAppConversationGetModel detected>"
          }
        },
        {
          "id": "<long>",
          "chatId": "<string>",
          "fromPhoneNumber": "<string>",
          "toPhoneNumber": "<string>",
          "userName": "<string>",
          "message": "<string>",
          "receivedAt": "<dateTime>",
          "campaignId": "<long>",
          "unreadMessagesCount": "<integer>",
          "whatsAppMedias": [
            {
              "id": "<long>",
              "key": "<string>",
              "url": "<string>"
            },
            {
              "id": "<long>",
              "key": "<string>",
              "url": "<string>"
            }
          ],
          "lastMessage": {
            "value": "<Circular reference to #/components/schemas/WhatsAppConversationGetModel detected>"
          }
        }
      ],
      "totalCount": "<long>",
      "pageSize": "<integer>",
      "pageNumber": "<integer>"
    },
    {
      "items": [
        {
          "id": "<long>",
          "chatId": "<string>",
          "fromPhoneNumber": "<string>",
          "toPhoneNumber": "<string>",
          "userName": "<string>",
          "message": "<string>",
          "receivedAt": "<dateTime>",
          "campaignId": "<long>",
          "unreadMessagesCount": "<integer>",
          "whatsAppMedias": [
            {
              "id": "<long>",
              "key": "<string>",
              "url": "<string>"
            },
            {
              "id": "<long>",
              "key": "<string>",
              "url": "<string>"
            }
          ],
          "lastMessage": {
            "value": "<Circular reference to #/components/schemas/WhatsAppConversationGetModel detected>"
          }
        },
        {
          "id": "<long>",
          "chatId": "<string>",
          "fromPhoneNumber": "<string>",
          "toPhoneNumber": "<string>",
          "userName": "<string>",
          "message": "<string>",
          "receivedAt": "<dateTime>",
          "campaignId": "<long>",
          "unreadMessagesCount": "<integer>",
          "whatsAppMedias": [
            {
              "id": "<long>",
              "key": "<string>",
              "url": "<string>"
            },
            {
              "id": "<long>",
              "key": "<string>",
              "url": "<string>"
            }
          ],
          "lastMessage": {
            "value": "<Circular reference to #/components/schemas/WhatsAppConversationGetModel detected>"
          }
        }
      ],
      "totalCount": "<long>",
      "pageSize": "<integer>",
      "pageNumber": "<integer>"
    }
  ]
}
Modified at 2025-12-05 09:59:33
Previous
Returns conversation messages
Next
Returns sender ids
Built with