Create pronunciation dictionary

Create a new pronunciation dictionary for the authenticated user

post/waves/v1/pronunciation-dicts

Request body

Example request

{
  "items": [
    {
      "word": "mysql",
      "pronunciation": "my-sequel"
    }
  ]
}

Response

Successfully created pronunciation dictionary

idstring required

Unique identifier for the pronunciation dictionary

createdAtstring date-time required

Timestamp when the dictionary was created

Example response

{
  "id": "64f1234567890abcdef12345",
  "items": [
    {
      "word": "mysql",
      "pronunciation": "my-sequel"
    }
  ],
  "createdAt": "2023-09-01T12:00:00.000Z"
}

Changes

Changed in 1 of the 5 revisions of this API.1