GET
/
api
/
v1
/
appuid
/
{appUid}
/
agentsessions
curl --request GET \
  --url https://a.api.mindset.ai/api/v1/appuid/{appUid}/agentsessions \
  --header 'x-api-key: <api-key>'
{
  "agentsessions": [
    {
      "uid": "<string>",
      "agentSessionUid": "<string>",
      "humanUid": "<string>",
      "externalUserId": "<string>",
      "userEmail": "<string>",
      "agentUid": "<string>",
      "tags": [
        "<string>"
      ],
      "contextUids": [
        "<string>"
      ],
      "createdAt": "2023-11-07T05:31:56Z",
      "lastUsedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

appUid
string
required

Your application's uid

Minimum length: 1

Query Parameters

startAfter
string

Start after the given createdAt timestamp (ISO 8601) for pagination

externalUserId
string

Filter results to a specific externalUserId

userEmail
string

Filter results to a specific email address format user identifier. Deprecated. Prefer using externalId.

Maximum length: 100
contextUid
string

Filter results to a specific contextUid

agentUid
string

Filter results to a specific agentUid

Response

200
application/json

Successful retrieval

The response is of type object.