- 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)
Get post capabilities
GET
https://app-dev.jollor.com/api/public/v1/posts/{post_id}/capabilities
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}}
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 GET 'https://app-dev.jollor.com/api/public/v1/posts/{{post_id}}/capabilities'
Responses
🟢200OK
application/json
Body
post_id
string
required
reply
object
required
allowed
boolean
required
reply_length
integer | null
optional
reason
string | null
optional
attachment_formats
object
required
image/jpeg
object
required
image/png
object
required
video/mp4
object
required
Example
{
"post_id": "653f8c7664e1adb4ec547d7a",
"reply": {
"allowed": true,
"reply_length": 2000
},
"attachment_formats": {
"image/jpeg": {
"max_count": 0,
"max_width": 0,
"max_height": 0,
"max_size_bytes": 0
},
"image/png": {
"max_count": 0,
"max_width": 0,
"max_height": 0,
"max_size_bytes": 0
},
"video/mp4": {
"max_count": 0,
"max_width": 0,
"max_height": 0,
"max_size_bytes": 0
}
}
}
Modified at 2023-12-05 07:01:00