Skip to main content
POST
/
items
/
{id}
/
tags
Add tags to an item
curl --request POST \
  --url https://api.example.com/items/{id}/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tags": [
    "<string>"
  ]
}
'
{
  "metadata": {
    "item_id": "<string>",
    "tags": [
      "<string>"
    ],
    "extensions": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.myme.so/llms.txt

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

Authorizations

Authorization
string
header
required

Pass an API key (marfa_k1_...) or OAuth access token (marfa_at_...)

Path Parameters

id
string
required

Body

application/json
tags
string[]
required
Minimum array length: 1

Response

Tags added

metadata
object
required