Skip to main content
POST
/
plaud
/
tags
Create a tag
curl --request POST \
  --url https://{deployment}/api/v1/plaud/tags \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "name": "Interviews",
  "color": "#46cf6c",
  "icon": "e627"
}
'
{
  "status": 123,
  "msg": "<string>",
  "request_id": "<string>",
  "data": {}
}

Authorizations

X-API-KEY
string
header
required

Your deployment's API key (MMK_API_KEY). Your Plaud account credentials are stored server-side — you do not send them.

Body

application/json
name
string
required
color
string

Optional #rrggbb.

icon
string

Optional 4-char hex glyph code (e.g. e627).

Response

Created tag

Upstream create envelope. data carries the new tag (including its id) but is loosely typed.

status
integer
msg
string
request_id
string
data
object