GET
/
configuration
/
v1
/
custom-vocabularies
curl --request GET \
  --url https://api.sandbox.asapp.com/configuration/v1/custom-vocabularies \
  --header 'asapp-api-id: <api-key>' \
  --header 'asapp-api-secret: <api-key>'
{
  "customVocabularies": [
    {
      "phrase": "IEEE",
      "soundsLike": [
        "I triple E"
      ],
      "id": "1"
    }
  ],
  "nextCursor": "6b29fc40-ca47-1067-b31d-00dd010662da",
  "prevCursor": "04719ebd-13e1-40e9-8b92-0941cd16a19c"
}

Authorizations

asapp-api-id
string
header
required
asapp-api-secret
string
header
required

Query Parameters

cursor
string | null

The cursor pointing to the current position

limit
integer | null
default:20

The maximum amount of objects to retrieve

Required range: 1 <= x <= 100

Response

200
application/json
Custom vocabulary configurations.
customVocabularies
object[]
required

A list of custom vocabularies.

nextCursor
string | null
required

The next cursor to fetch

Example:

"6b29fc40-ca47-1067-b31d-00dd010662da"

prevCursor
string | null
required

The previous cursor to fetch

Example:

"04719ebd-13e1-40e9-8b92-0941cd16a19c"