Jollor
  1. Jollor Social API (public)
Jollor
  • Jollor Social API (public)
    • Webhook
      • subscriptions
        • Used to specify when the webhook should be called
        • Used to specify when the webhook should not be called
      • Send Test webhook
      • Enables the webhook of the provided project
      • Get project Webhook
      • Deletes webhook of the provided project
      • Updates webhook of the provided project
      • Get Test webhook
    • Render
      • Render message
      • Render post
    • Suggestions
      • Get Suggestions from AI Service
    • Ratings
      • Put rating for an automatic reply written by an AI
    • Media
      • New Media
    • Get post
      GET
    • Get post capabilities
      GET
    • List tagged posts
      GET
    • Close Dialogue
      PUT
    • List messages in dialogue
      GET
    • AI translate text
      POST
    • List agencies
      GET
    • Create post reply
      POST
    • Get agency
      GET
    • List projects in agency
      GET
    • Get project
      GET
    • List incoming posts / comments
      GET
    • List private conversations
      GET
    • List messages in conversation
      GET
    • Get message
      GET
    • Get message capabilities
      GET
    • Get current user
      GET
    • Create Message Reply
      POST
  • Jollor Social API Auth (public)
    • Create user access_token
      POST
    • Exchange user access_token with project access_token
      POST
    • Refresh project access_token
      POST
  1. Jollor Social API (public)

List private conversations

GET
https://app-dev.jollor.com/api/public/v1/projects/{project_id}/conversations
List private conversations of a project
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://app-dev.jollor.com/api/public/v1/projects/<your project_id>/conversations' \
--header 'Content-Type: application/json'
Response Response Example
[
  {
    "conversation_id": "3396605312779194285_8900055079256335562",
    "provider": "zalo",
    "last_message_at": "2023-11-14T22:02:38.149Z",
    "_links": {
      "self": {
        "href": "/public/v1/projects/612cc9931d1652451ef2e6d0/conversations/3396605312779194285_8900055079256335562"
      },
      "messages": {
        "href": "/public/v1/projects/612cc9931d1652451ef2e6d0/conversations/3396605312779194285_8900055079256335562/messages"
      }
    }
  },
  {
    "conversation_id": "aWdfZAG06MTpJR01lc3NhZA2VUaHJlYWQ6MTc4NDE0MDY5OTg0MjgwODU6MzQwMjgyMzY2ODQxNzEwMzAwOTQ5MTI4MTQ5NzM3MjU4NjM0NjQ0",
    "provider": "instagram",
    "last_message_at": "2023-11-14T14:32:47.201Z",
    "_links": {
      "self": {
        "href": "/public/v1/projects/612cc9931d1652451ef2e6d0/conversations/aWdfZAG06MTpJR01lc3NhZA2VUaHJlYWQ6MTc4NDE0MDY5OTg0MjgwODU6MzQwMjgyMzY2ODQxNzEwMzAwOTQ5MTI4MTQ5NzM3MjU4NjM0NjQ0"
      },
      "messages": {
        "href": "/public/v1/projects/612cc9931d1652451ef2e6d0/conversations/aWdfZAG06MTpJR01lc3NhZA2VUaHJlYWQ6MTc4NDE0MDY5OTg0MjgwODU6MzQwMjgyMzY2ODQxNzEwMzAwOTQ5MTI4MTQ5NzM3MjU4NjM0NjQ0/messages"
      }
    }
  }
]

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
project_id
string 
required
Project ID
Example:
{{project_id}}
Header Params
Content-Type
string 
required
Example:
application/json

Responses

🟢200Success
application/json
Body
array of:
conversation_id
string  | null 
required
provider
string 
required
last_message_at
string 
required
_links
object 
required
self
object 
required
messages
object 
required
Previous
List incoming posts / comments
Next
List messages in conversation
Built with