- 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)
List agencies
GET
https://app-dev.jollor.com/api/public/v1/agencies
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
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 --request GET 'https://app-dev.jollor.com/api/public/v1/agencies' \
--header 'Content-Type: application/json'
Responses
🟢200Success
application/json
Body
array of:
id
string
required
name
string
required
screen_name
string
required
roles
array[string]
required
_links
object
required
self
object
required
projects
object
required
Example
[
{
"id": "5a65b85b4732f7b07ee45d5d",
"name": "Bára Agency",
"screen_name": "Bára Agency",
"roles": [
"member",
"member"
],
"_links": {
"self": {
"href": "/public/v1/agencies/5a65b85b4732f7b07ee45d5d"
},
"projects": {
"href": "/public/v1/agencies/5a65b85b4732f7b07ee45d5d/projects"
}
}
},
{
"id": "612cc9931d1652451ef2e6ce",
"name": "David Beneš",
"screen_name": "David Beneš",
"roles": [
"member"
],
"_links": {
"self": {
"href": "/public/v1/agencies/612cc9931d1652451ef2e6ce"
},
"projects": {
"href": "/public/v1/agencies/612cc9931d1652451ef2e6ce/projects"
}
}
}
]
Modified at 2023-12-05 07:06:02