For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Start buildingGet support
DocumentationAPI ReferenceChangelogDiscord
  • Voices
    • POSTCreate voice
    • GETList voices
    • DELDelete voice
  • Text-to-Speech (TTS)
    • WSSStream Input
    • STREAMText-to-Speech (Streamed JSON)
    • POSTText-to-Speech (Streamed File)
    • POSTText-to-Speech (Json)
    • POSTText-to-Speech (File)
    • POSTVoice Conversion (Streamed File)
    • STREAMVoice Conversion (Streamed JSON)
  • Speech-to-speech (EVI)
    • WSSChat
      • POSTCreate prompt
      • GETList prompts
      • GETList prompt versions
      • GETGet prompt version
      • POSTCreate prompt version
      • PATCHUpdate prompt name
      • PATCHUpdate prompt description
      • DELDelete prompt
      • DELDelete prompt version
  • Expression Measurement API
Start buildingGet support
LogoLogo
LogoLogo
Speech-to-speech (EVI)Prompts

Update prompt name

PATCH
https://api.hume.ai/v0/evi/prompts/:id
PATCH
/v0/evi/prompts/:id
$curl -X PATCH https://api.hume.ai/v0/evi/prompts/your-prompt-id \
> -H "X-Hume-Api-Key: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "name": "Updated Weather Assistant Prompt Name"
>}'

Updates the name of a Prompt.

See our prompting guide for tips on crafting your system prompt.

Was this page helpful?
Previous

Update prompt description

Next
Built with

Authentication

X-Hume-Api-Keystring
API Key authentication via header

Path parameters

idstringRequiredformat: "uuid"
Identifier for a Prompt. Formatted as a UUID.

Request

This endpoint expects an object.
namestringRequired
Name applied to all versions of a particular Prompt.

Response

Success