Skip to main content
POST
/
voices
/
sync
curl --request POST \
  --url https://api.argil.ai/v1/voices/sync \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{}'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "providerName": "ELEVEN_LABS",
    "connectionName": "<string>",
    "syncStatus": "SYNCING"
  }
]

Authorizations

x-api-key
string
header
required

API key to be included in the x-api-key header

Body

application/json
providerName
enum<string>

Optional. Sync only this provider. If omitted, all connected voice providers are synced.

Available options:
ELEVEN_LABS,
MINIMAX

Response

Sync triggered successfully. Returns the list of providers being synced.

id
string<uuid>

The provider connection ID

providerName
enum<string>

The voice provider name

Available options:
ELEVEN_LABS,
MINIMAX
connectionName
string | null

The user-defined connection name

syncStatus
enum<string>

Status of the sync (will be SYNCING after this call)

Available options:
SYNCING