Skip to main content
PATCH
/
api
/
v1
/
runtime
/
v1
/
prompts
/
{nameOrId}
Update Prompt
curl --request PATCH \
  --url https://api.runflow.ai/api/v1/runtime/v1/prompts/{nameOrId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "content": "<string>",
  "metadata": {}
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.runflow.ai/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

nameOrId
string
required

Prompt name or UUID

Body

application/json
name
string
content
string
metadata
object

Response

{ success, data: } on success.