curl --request PUT \
--url https://api.example.com/api/v1/projects/{project_id}/prompts/{prompt_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"Title": "<string>",
"OutputType": "IMAGE",
"Description": "<string>",
"PromptText": "<string>"
}
'