Skip to content

Commit 43f5c00

Browse files
authored
Update Custom Voice API version in personal-voice-create-project.md
1 parent 550eac4 commit 43f5c00

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/ai-services/speech-service/personal-voice-create-project.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ Personal voice projects contain the user consent statement and the personal voic
1818

1919
## Create a project
2020

21-
To create a personal voice project, use the [Projects_Create](/rest/api/speechapi/projects/create) operation of the custom voice API. Construct the request body according to the following instructions:
21+
To create a personal voice project, use the [Projects_Create](/rest/api/aiservices/speechapi/projects/create) operation of the custom voice API. Construct the request body according to the following instructions:
2222

2323
- Set the required `kind` property to `PersonalVoice`. The kind can't be changed later.
2424
- Optionally, set the `description` property for the project description. The project description can be changed later.
2525

26-
Make an HTTP PUT request using the URI as shown in the following [Projects_Create](/rest/api/speechapi/projects/create) example.
26+
Make an HTTP PUT request using the URI as shown in the following [Projects_Create](/rest/api/aiservices/speechapi/projects/create) example.
2727
- Replace `YourResourceKey` with your Speech resource key.
2828
- Replace `YourResourceRegion` with your Speech resource region.
2929
- Replace `ProjectId` with a project ID of your choice. The case sensitive ID must be unique within your Speech resource. The ID will be used in the project's URI and can't be changed later.
@@ -32,7 +32,7 @@ Make an HTTP PUT request using the URI as shown in the following [Projects_Creat
3232
curl -v -X PUT -H "Ocp-Apim-Subscription-Key: YourResourceKey" -H "Content-Type: application/json" -d '{
3333
"description": "Project description",
3434
"kind": "PersonalVoice"
35-
} ' "https://YourResourceRegion.api.cognitive.microsoft.com/customvoice/projects/ProjectId?api-version=2023-12-01-preview"
35+
} ' "https://YourResourceRegion.api.cognitive.microsoft.com/customvoice/projects/ProjectId?api-version=2024-02-01-preview"
3636
```
3737

3838
You should receive a response body in the following format:

0 commit comments

Comments
 (0)