GET
/
v1
/
agents
/
{agent_id}
/
versions
Get agent versions
curl --request GET \
  --url https://api.callrounded.com/v1/agents/{agent_id}/versions \
  --header 'X-Api-Key: <api-key>'
{
"message": "Agent versions retrieved successfully",
"data": [
{
"version": 123,
"configuration_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"active": true
}
],
"error": {
"details": [
{
"field": "email",
"message": "Invalid email format"
}
],
"message": "An error occurred while processing your request",
"status": 400,
"type": "generic_error"
},
"status": 200
}

Authorizations

X-Api-Key
string
header
required

The API Key created in Rounded Studio.

Path Parameters

agent_id
string<uuid>
required

The ID of the agent to get versions for.

Response

200
application/json

Successfully retrieved agent versions

The response is of type object.