Thinkeo API
HomeWebsiteDocumentationThinkeo Platform
HomeWebsiteDocumentationThinkeo Platform
  1. Publications
  • Getting Started
    • Introduction
    • Authentication
    • Required Elements for Creating a Publication
    • Creating Publications
  • Essentials - Most used
    • /teams
      GET
    • /tokens
      POST
    • /attachments
      POST
    • /publications
      POST
  • Auth
    • /auth/confirm
      PUT
    • /auth/forgot-password
      POST
    • /auth/logout
      POST
    • /auth/password
      PUT
    • /auth/refresh
      POST
    • /auth/register
      POST
    • /auth/sso/providers
      GET
    • /auth/sso/{provider}/login
      POST
    • /auth/sso/verify
      POST
    • /auth/login
      POST
  • Apps
    • /apps
    • /apps/query
    • /apps/{app_id}
    • /apps/{app_id}
    • /apps/{app_id}/icon
    • /apps/{app_id}/icon
    • /apps/{app_id}/versions
    • /apps/{app_id}/versions
    • /apps/{app_id}/versions/{version}
    • /apps/{app_id}/wizard
    • /apps/{app_id}/wizard
    • /apps/{app_id}/wizard
    • /apps/{app_id}/wizard
    • /apps/{app_id}/archive
  • Assignments
    • /assignments
    • /assignments/{assignment_id}
    • /assignments/{assignment_id}
  • Attachments
    • /attachments/{attachment_id}
    • /attachments/{attachment_id}/meta
  • Attributes
    • /attributes
    • /attributes/query
    • /attributes/{attr_id}
    • /attributes/{attr_id}
    • /attributes/{attr_id}
    • /attributes/views/
    • /attributes/views/
    • /attributes/views/{view_id}
    • /attributes/views/{view_id}
    • /attributes/views/{view_id}
  • Blocks
    • /blocks
    • /blocks/query
    • /blocks/{block_id}
    • /blocks/{block_id}
    • /blocks/{block_id}
    • /blocks/{block_id}/children
    • /blocks/{block_id}/children/{child_id}
    • /blocks/{block_id}/children/{child_id}
    • /blocks/{block_id}/shallow-copy
    • /blocks/{block_id}/deep-copy
    • /blocks/ai-models
    • /blocks/{block_id}/graph
    • /blocks/views
    • /blocks/views
    • /blocks/views/{view_id}
    • /blocks/views/{view_id}
    • /blocks/views/{view_id}
  • Docs
    • /docs/openapi.json
  • Publications
    • /publications/query
      POST
    • /publications/{publication_id}
      GET
    • /publications/{publication_id}
      PUT
    • /publications/{publication_id}
      DELETE
    • /publications/{publication_id}/attachments
      GET
    • /publications/{publication_id}/data
      GET
    • /publications/{publication_id}/data
      PUT
    • /publications/views
      GET
    • /publications/views
      POST
    • /publications/views/{view_id}
      GET
    • /publications/views/{view_id}
      PUT
    • /publications/views/{view_id}
      DELETE
  • Teams
    • /teams
    • /teams
    • /teams/current
    • /teams/groups
    • /teams/groups
    • /teams/groups/{group_id}
    • /teams/groups/{group_id}
    • /teams/groups/{group_id}/apps
    • /teams/groups/{group_id}/apps
    • /teams/groups/{group_id}/apps/{app_id}
    • /teams/groups/{group_id}/users
    • /teams/groups/{group_id}/users
    • /teams/groups/{group_id}/users/{user_id}
    • /teams/users
    • /teams/users
    • /teams/users/{user_id}
    • /teams/users/{user_id}
    • /teams/billing
    • /teams/billing/report
    • /teams/logs
  • Tokens
    • /tokens
    • /tokens/{token_id}
  • Users
    • /users/me
    • /users/me
  1. Publications

/publications/query

POST
https://api.thinkeo.io/v0/publications/query

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
userId
optional
Any of
Default:
null
filter
object (PublicationFilter) 
optional
ids
array[string <uuid>]
optional
appIds
array[string <uuid>]
optional
teamIds
array[string <uuid>]
optional
userIds
array[string <uuid>]
optional
sortBy
object (SortBy_for_PublicationSortBy) 
optional
createdAfter
string <date-time> | null 
optional
Default:
null
updatedAfter
string <date-time> | null 
optional
Default:
null
page
integer <int64>
optional
Default:
1
pageSize
integer <int64>
optional
Default:
48
Example
{
  "userId": "2c4a230c-5085-4924-a3e1-25fb4fc5965b",
  "filter": {
    "ids": [],
    "appIds": [],
    "teamIds": [],
    "userIds": [],
    "sortBy": {
      "key": "id",
      "order": "asc"
    },
    "createdAfter": null,
    "updatedAfter": null
  },
  "page": 1,
  "pageSize": 48
}

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 POST 'https://api.thinkeo.io/v0/publications/query' \
--header 'Content-Type: application/json' \
--data-raw '{
    "userId": "2c4a230c-5085-4924-a3e1-25fb4fc5965b",
    "filter": {
        "ids": [],
        "appIds": [],
        "teamIds": [],
        "userIds": [],
        "sortBy": {
            "key": "id",
            "order": "asc"
        },
        "createdAfter": null,
        "updatedAfter": null
    },
    "page": 1,
    "pageSize": 48
}'

Responses

🟢200OK
application/json
Body
array of:
id
string <uuid>
required
appId
string <uuid>
required
appVersion
string 
required
name
string  | null 
optional
userId
string <uuid>
required
updatedAt
string <date-time>
required
createdAt
string <date-time>
required
Example
[
  {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "appId": "28c365d5-df94-4a54-8217-3ce51d068868",
    "appVersion": "string",
    "name": "string",
    "userId": "2c4a230c-5085-4924-a3e1-25fb4fc5965b",
    "updatedAt": "2019-08-24T14:15:22Z",
    "createdAt": "2019-08-24T14:15:22Z"
  }
]
🟠400Bad Request
🟠413413
🟠415415
Modified at 2025-02-21 14:53:31
Previous
/docs/openapi.json
Next
/publications/{publication_id}
Built with