- Jollor Social API (public)
- Webhook
- Render
- Suggestions
- Ratings
- Media
- Get postGET
- Get post capabilitiesGET
- List tagged postsGET
- Close DialoguePUT
- List messages in dialogueGET
- AI translate textPOST
- List agenciesGET
- Create post replyPOST
- Get agencyGET
- List projects in agencyGET
- Get projectGET
- List incoming posts / commentsGET
- List private conversationsGET
- List messages in conversationGET
- Get messageGET
- Get message capabilitiesGET
- Get current userGET
- Create Message ReplyPOST
- Jollor Social API Auth (public)
Create post reply
POST
https://app-dev.jollor.com/api/public/v1/post/{post_id}/replies
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
Example:
{{post_id}}
Body Params application/json
text
string
required
Example
{
"text": "hello reply 2"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
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"
}'
Responses
🟢200Success
application/json
Body
id
string
required
_links
object
required
self
object
required
Example
{
"id": "6551f2e909092e00a0df184c",
"_links": {
"self": {
"href": "/public/v1/messages/6551f2e909092e00a0df184c"
}
}
}
Modified at 2024-01-23 11:52:13