/teams
GET
/teamsList the Teams accessible with your account using the temporary accessToken. From the response, you'll need to retrieve the ID of the Team for which you want to create your permanent bearer token.
Request
Request samples
Responses
OK(200)
Bad Request(400)
413(413)
415(415)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
array of:
aiConfig
optional
Any of
frequencyPenalty
number <float> | null
optional
Between -2.0 and 2.0 (defaults to 0.0).
Default:
null
model
string | null
optional
Which model to use.
Default:
null
presencePenalty
number <float> | null
optional
Between -2.0 and 2.0 (defaults to 0.0).
Default:
null
systemPrompt
string | null
optional
System prompt.
Default:
null
temperature
number <float> | null
optional
Between 0.0 and 2.0 (defaults to 1.0).
Default:
null
topP
number <float> | null
optional
Between 0.0 and 1.0 (defaults to 1.0).
Default:
null
id
string <uuid>
required
name
string
required
stripeCustomerId
string | null
optional
Example
[
{
"aiConfig": {
"frequencyPenalty": null,
"model": null,
"presencePenalty": null,
"systemPrompt": null,
"temperature": null,
"topP": null
},
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"stripeCustomerId": "string"
}
]
Last modified: 11 days ago