Thinkeo API
HomeWebsiteDocumentationThinkeo Platform
HomeWebsiteDocumentationThinkeo Platform
  1. Teams
  • 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
    • /auth/forgot-password
    • /auth/logout
    • /auth/password
    • /auth/refresh
    • /auth/register
    • /auth/sso/providers
    • /auth/sso/{provider}/login
    • /auth/sso/verify
    • /auth/login
  • 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
    • /publications/{publication_id}
    • /publications/{publication_id}
    • /publications/{publication_id}
    • /publications/{publication_id}/attachments
    • /publications/{publication_id}/data
    • /publications/{publication_id}/data
    • /publications/views
    • /publications/views
    • /publications/views/{view_id}
    • /publications/views/{view_id}
    • /publications/views/{view_id}
  • Teams
    • /teams
      PUT
    • /teams
      POST
    • /teams/current
      GET
    • /teams/groups
      GET
    • /teams/groups
      POST
    • /teams/groups/{group_id}
      PUT
    • /teams/groups/{group_id}
      DELETE
    • /teams/groups/{group_id}/apps
      GET
    • /teams/groups/{group_id}/apps
      POST
    • /teams/groups/{group_id}/apps/{app_id}
      DELETE
    • /teams/groups/{group_id}/users
      GET
    • /teams/groups/{group_id}/users
      POST
    • /teams/groups/{group_id}/users/{user_id}
      DELETE
    • /teams/users
      GET
    • /teams/users
      POST
    • /teams/users/{user_id}
      PUT
    • /teams/users/{user_id}
      DELETE
    • /teams/billing
      GET
    • /teams/billing/report
      GET
    • /teams/logs
      GET
  • Tokens
    • /tokens
    • /tokens/{token_id}
  • Users
    • /users/me
    • /users/me
  1. Teams

/teams

PUT
https://api.thinkeo.io/v0/teams

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
name
string  | null 
optional
aiConfig
optional
Any of
model
string  | null 
optional
Which model to use.
Default:
null
systemPrompt
string  | null 
optional
System prompt.
Default:
null
topP
number <float> | null 
optional
Between 0.0 and 1.0 (defaults to 1.0).
Default:
null
temperature
number <float> | null 
optional
Between 0.0 and 2.0 (defaults to 1.0).
Default:
null
presencePenalty
number <float> | null 
optional
Between -2.0 and 2.0 (defaults to 0.0).
Default:
null
frequencyPenalty
number <float> | null 
optional
Between -2.0 and 2.0 (defaults to 0.0).
Default:
null
maxTokensOutput
integer <uint32> | null 
optional
How many tokens to generate at most.
>= 1
Default:
null
Example
{
  "name": "string",
  "aiConfig": {
    "model": null,
    "systemPrompt": null,
    "topP": null,
    "temperature": null,
    "presencePenalty": null,
    "frequencyPenalty": null,
    "maxTokensOutput": null
  }
}

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 PUT 'https://api.thinkeo.io/v0/teams' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "string",
    "aiConfig": {
        "model": null,
        "systemPrompt": null,
        "topP": null,
        "temperature": null,
        "presencePenalty": null,
        "frequencyPenalty": null,
        "maxTokensOutput": null
    }
}'

Responses

🟢200OK
application/json
no content
Body
object {0}
Example
{}
🟠400Bad Request
Modified at 2025-04-22 12:08:25
Previous
/publications/views/{view_id}
Next
/teams
Built with