Namespaces
Create a namespace.
Create a namespace for the authenticated organization.
post/v1/namespace
Request body
Example request
{
"embeddingConfig": {
"resourceName": "my-resource-name"
},
"vectorStoreConfig": {
"indexHost": "https://example.svc.aped-1234-a56b.pinecone.io"
}
}Response
The created namespace
Example response
{
"data": {
"embeddingConfig": {
"resourceName": "my-resource-name"
},
"vectorStoreConfig": {
"indexHost": "https://example.svc.aped-1234-a56b.pinecone.io"
}
}
}