curl -X PATCH https://api.voxmind.ai/organisations/42/predefined-texts/23 \ -H "Authorization: Bearer YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "text": "Please clearly say your full name to complete voice registration." }'
Copy
Ask AI
{ "id": 23, "org_id": 42, "language": "en-UK", "text_code": 1, "text": "Please clearly say your full name to complete voice registration.", "created_at": "2025-03-15T10:00:00Z", "updated_at": "2025-03-15T16:45:00Z"}
Devices & Texts
Update Predefined Text
Update the content of an existing predefined text. Use this to refine prompt wording without creating a new record.
PATCH
https://api.voxmind.ai
/
organisations
/
{orgId}
/
predefined-texts
/
{textId}
Copy
Ask AI
curl -X PATCH https://api.voxmind.ai/organisations/42/predefined-texts/23 \ -H "Authorization: Bearer YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "text": "Please clearly say your full name to complete voice registration." }'
Copy
Ask AI
{ "id": 23, "org_id": 42, "language": "en-UK", "text_code": 1, "text": "Please clearly say your full name to complete voice registration.", "created_at": "2025-03-15T10:00:00Z", "updated_at": "2025-03-15T16:45:00Z"}
Updated language code. Note: changing the language while keeping the same text_code is valid as long as the new language + text_code combination doesn’t already exist.
curl -X PATCH https://api.voxmind.ai/organisations/42/predefined-texts/23 \ -H "Authorization: Bearer YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "text": "Please clearly say your full name to complete voice registration." }'
Copy
Ask AI
{ "id": 23, "org_id": 42, "language": "en-UK", "text_code": 1, "text": "Please clearly say your full name to complete voice registration.", "created_at": "2025-03-15T10:00:00Z", "updated_at": "2025-03-15T16:45:00Z"}