SMAO API Documentation
Public APIGlossary

Create a glossary item

POST
/glossary

Creates a new glossary item inside a glossaries-type group. The referenced group_id must belong to your organization and have type: glossaries.

Authorization

bearerAuth
AuthorizationBearer <token>

API key in the Authorization: Bearer <key> header. Keys are created in the SMAO dashboard (Settings → API Keys).

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/glossary" \  -H "Content-Type: application/json" \  -d '{    "group_id": "65a1234567890abcdef01234",    "name": "Application Programming Interface",    "abbreviation": "API"  }'
{  "data": {    "id": "string",    "group_id": "string",    "group_name": "string",    "abbreviation": "string",    "name": "string",    "description": "string",    "active": true,    "created_at": "2019-08-24T14:15:22Z",    "updated_at": "2019-08-24T14:15:22Z"  }}