Skip to main content
PUT
/
agents
/
{agentId}
Update agent
curl --request PUT \
  --url https://app2.freyavoice.ai/api/v2/agents/{agentId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "config": {
    "llmConfig": {
      "provider": "<string>",
      "model": "<string>",
      "systemPrompt": "<string>",
      "firstMessage": "<string>",
      "firstMessageMode": "assistant-waits-for-user",
      "disableInterruptionsDuringFirstMessage": false,
      "maxTokens": 1000,
      "temperature": 0.7,
      "thinkingBudgetEnabled": false,
      "thinkingBudget": 10000,
      "tools": [],
      "additionalSettings": {}
    },
    "ttsConfig": {
      "provider": "<string>",
      "model": "<string>",
      "voiceId": "<string>",
      "stability": 0.5,
      "similarityBoost": 0.5,
      "language": "multi",
      "speed": 1,
      "additionalSettings": {},
      "startSpeakingPlan": {
        "waitSeconds": 0.4
      },
      "stopSpeakingPlan": {
        "numberOfWords": 1,
        "voiceSeconds": 0.4,
        "backOffSeconds": 0.4
      }
    },
    "sstConfig": {
      "provider": "<string>",
      "model": "<string>",
      "temperature": 0.5,
      "language": "multi",
      "punctuate": true,
      "diarize": false,
      "additionalSettings": {}
    },
    "complianceConfig": {
      "pciDss": false,
      "mifidIi": false,
      "euAiAct": false,
      "soc2": false
    },
    "callTimeoutSettings": {
      "silenceTimeout": 0,
      "maximumDuration": 600
    },
    "voicemailDetection": {
      "enabled": false,
      "messageMode": "none",
      "staticMessage": null,
      "voicemailResponseDelay": 2
    },
    "postConversationAnalysis": {
      "generateSummary": false,
      "summaryPrompt": null,
      "generateStructuredData": false,
      "structuredDataPrompt": null,
      "autoDetectProblems": false,
      "structuredDataSchema": []
    },
    "privacyConfig": {
      "enableRecording": false,
      "getRecordingConsent": false,
      "recordingConsentText": null,
      "stopSecs": 1,
      "preSpeechMs": 1,
      "maxDurationSecs": 1
    },
    "turnAnalyzerConfig": {
      "provider": "local",
      "url": "<string>",
      "modelPath": "<string>"
    }
  },
  "files": [
    {
      "fileName": "<string>",
      "filePath": "<string>",
      "fileSize": 123,
      "mimeType": "<string>"
    }
  ]
}
'
{
  "success": true,
  "data": {
    "message": "<string>",
    "result": {
      "agent": {
        "id": "<string>",
        "workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "source": "firebase",
        "config": {
          "llmConfig": {
            "provider": "<string>",
            "model": "<string>",
            "systemPrompt": "<string>",
            "firstMessage": "<string>",
            "firstMessageMode": "assistant-waits-for-user",
            "disableInterruptionsDuringFirstMessage": false,
            "maxTokens": 1000,
            "temperature": 0.7,
            "thinkingBudgetEnabled": false,
            "thinkingBudget": 10000,
            "tools": [],
            "additionalSettings": {}
          },
          "ttsConfig": {
            "provider": "<string>",
            "model": "<string>",
            "voiceId": "<string>",
            "stability": 0.5,
            "similarityBoost": 0.5,
            "language": "multi",
            "speed": 1,
            "additionalSettings": {},
            "startSpeakingPlan": {
              "waitSeconds": 0.4
            },
            "stopSpeakingPlan": {
              "numberOfWords": 1,
              "voiceSeconds": 0.4,
              "backOffSeconds": 0.4
            }
          },
          "sstConfig": {
            "provider": "<string>",
            "model": "<string>",
            "temperature": 0.5,
            "language": "multi",
            "punctuate": true,
            "diarize": false,
            "additionalSettings": {}
          },
          "complianceConfig": {
            "pciDss": false,
            "mifidIi": false,
            "euAiAct": false,
            "soc2": false
          },
          "callTimeoutSettings": {
            "silenceTimeout": 0,
            "maximumDuration": 600
          },
          "voicemailDetection": {
            "enabled": false,
            "messageMode": "none",
            "staticMessage": null,
            "voicemailResponseDelay": 2
          },
          "postConversationAnalysis": {
            "generateSummary": false,
            "summaryPrompt": null,
            "generateStructuredData": false,
            "structuredDataPrompt": null,
            "autoDetectProblems": false,
            "structuredDataSchema": []
          },
          "privacyConfig": {
            "enableRecording": false,
            "getRecordingConsent": false,
            "recordingConsentText": null,
            "stopSecs": 1,
            "preSpeechMs": 1,
            "maxDurationSecs": 1
          },
          "turnAnalyzerConfig": {
            "provider": "local",
            "url": "<string>",
            "modelPath": "<string>"
          }
        },
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z",
        "files": []
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

agentId
string
required

Agent ID

Body

application/json
workspaceId
string<uuid>
required
name
string
Required string length: 1 - 100
config
object
files
object[]

Response

Agent updated

success
enum<boolean>
required
Available options:
true,
false
data
object
required