GET
/
tags
/
{tagId}
curl --request GET \
  --url https://api.memoram.app/api/v1/tags/{tagId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "color": "#3B82F6",
  "description": "<string>",
  "is_enabled": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Retrieve the details of a specific memory tag by its ID. Requires the user’s ID.

Authorization

Requires Bearer token authentication using your Developer JWT.

Authorizations

Authorization
string
header
required

JWT token obtained via /auth/token endpoint.

Path Parameters

tagId
string
required

The unique ID of the tag.

Query Parameters

user_id
string
required

The unique ID of the user who owns the tag.

Response

200
application/json

Details of the memory tag.

The response is of type object.