Skip to main content
POST
/
v1
/
nomenclature
/
categories
/
bulk
Bulk save categories
curl --request POST \
  --url https://api.nomi.tools/v1/nomenclature/categories/bulk \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "name": "<string>",
    "id": "<string>",
    "parentId": "<string>"
  }
]
'
{
  "ids": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.nomi.tools/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use HTTP Basic Authentication. Provide your email as login and PPT token as the password.

Body

application/json
name
string
required
id
string | null
parentId
string | null

Response

200 - application/json

Categories saved successfully

ids
string[]