Skip to main content
PUT
/
evault
/
v1
/
tags
/
{id}
Update Tag (Put)
curl --request PUT \
  --url https://api.example.com/evault/v1/tags/{id}/ \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "description": "<string>"
}

Authorizations

api-key
string
header
required

Path Parameters

id
string
required

A unique value identifying this tag.

Body

name
string
required
Required string length: 1 - 20
description
string | null

Description of the tag

Maximum string length: 500

Response

200 - application/json
id
string
required
name
string
required
Maximum string length: 20
created_at
string<date-time>
required
updated_at
string<date-time>
required
description
string | null

Description of the tag

Maximum string length: 500