curl --request POST \
--url https://api.example.com/v1/voices/{voice_id}/edit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'name=<string>' \
--data 'description=<string>'{
"user_id": "<string>",
"voice_id": "<string>",
"name": "<string>",
"description": "",
"created_at": 123,
"updated_at": 123
}curl --request POST \
--url https://api.example.com/v1/voices/{voice_id}/edit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'name=<string>' \
--data 'description=<string>'{
"user_id": "<string>",
"voice_id": "<string>",
"name": "<string>",
"description": "",
"created_at": 123,
"updated_at": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.