- 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 message
GET
https://app-dev.jollor.com/api/public/v1/messages/{message_id}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
message_id
string
required
Example:
{{message_id}}
Header Params
Content-Type
string
required
Example:
application/json
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/messages/{{message_id}}' \
--header 'Content-Type: application/json'
Responses
🟢200Success
application/json
Body
id
string
required
provider
string
required
sent_at
string
required
is_incoming
boolean
required
sender
object
required
id
string
required
name
string
required
recipient
object
required
id
string
required
name
string
required
text
string
required
_links
object
required
self
object
required
capabilities
object
required
Example
{
"id": "6509c7912721d7bce3ac7c95",
"provider": "facebook",
"sent_at": "2023-07-03T02:17:55.000Z",
"is_incoming": false,
"sender": {
"id": "5440fb68f779df5379001123",
"name": "Psikipedie"
},
"recipient": {
"id": "64a2813c24a447a0fef33d41",
"name": "Lejenharr Ferrer"
},
"text": "Dobrý den Lejenharr Ferrer , můžeme vám pomoct? :)",
"_links": {
"self": {
"href": "/public/v1/messages/6509c7912721d7bce3ac7c95"
},
"capabilities": {
"href": "/public/v1/messages/6509c7912721d7bce3ac7c95/capabilities"
}
}
}
Modified at 2023-12-05 07:09:27