GET
/
v2
/
workspace
/
{workspaceId}
/
agents
curl --request GET \
  --url https://api.gptmaker.ai/v2/workspace/{workspaceId}/agents \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "behavior": "<string>",
    "avatar": "<string>",
    "communicationType": "FORMAL",
    "type": "SUPPORT",
    "jobName": "<string>",
    "jobSite": "<string>",
    "jobDescription": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspaceId
string
required

ID do workspace

Query Parameters

page
integer

Número da página

pageSize
integer

Tamanho da página

query
string

Filtro pelo nome do agente

Response

200
application/json

Lista de agentes

The response is of type object[].