v1

latestOpenAPI 3.1.1MIT License2026-07-122354100.9 KB
Namespaces

Create a namespace.

Create a namespace for the authenticated organization.

post/v1/namespace

Request body

namestring required
slugstring required

Example request

{
  "embeddingConfig": {
    "resourceName": "my-resource-name"
  },
  "vectorStoreConfig": {
    "indexHost": "https://example.svc.aped-1234-a56b.pinecone.io"
  }
}

Response

The created namespace

successtrue required

Example response

{
  "data": {
    "embeddingConfig": {
      "resourceName": "my-resource-name"
    },
    "vectorStoreConfig": {
      "indexHost": "https://example.svc.aped-1234-a56b.pinecone.io"
    }
  }
}