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)

Create post reply

POST
https://app-dev.jollor.com/api/public/v1/post/{post_id}/replies
Create post reply
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://app-dev.jollor.com/api/public/v1/post/{{post_id}}/replies' \
--header 'Content-Type: application/json' \
--data-raw '{
  "text": "hello reply 2"
}'
Response Response Example
{
  "id": "6551f2e909092e00a0df184c",
  "_links": {
    "self": {
      "href": "/public/v1/messages/6551f2e909092e00a0df184c"
    }
  }
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
post_id
string 
required
Post ID
Example:
{{post_id}}
Body Params application/json
text
string 
required
Examples

Responses

🟢200Success
application/json
Body
id
string 
required
_links
object 
required
self
object 
required
Previous
List agencies
Next
Get agency
Built with