Create a new vector database (VDB) connector.
| Field | Type | Description |
|---|---|---|
connector_name | str | The profile name of the data connector to create. |
connector_body | VDBConfigs | Configuration object for the VDB connector. |
{ "profile_id": str }{
"connector_name": "my-pinecone-db",
"connector_body": {
"vector_db_type": "pinecone",
"api_key": "your-api-key",
"environment": "us-east-1-aws",
"index_name": "my-index"
}
}