Tags
Edit tag
PUT
/
tags
/
{id}
curl --request PUT \
--url https://api.matia.io/v1/tags/{id} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"name": "<string>",
"description": "<string>",
"owner": "<string>"
}'
{
"code": "<string>",
"data": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"owner": "<string>",
"origin": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"lastUpdatedAt": "2023-11-07T05:31:56Z"
}
}
Authorizations
Path Parameters
The ID of the tag
Body
application/json
Response
200
application/json
Successful operation
The response is of type object
.
curl --request PUT \
--url https://api.matia.io/v1/tags/{id} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"name": "<string>",
"description": "<string>",
"owner": "<string>"
}'
{
"code": "<string>",
"data": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"owner": "<string>",
"origin": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"lastUpdatedAt": "2023-11-07T05:31:56Z"
}
}
Assistant
Responses are generated using AI and may contain mistakes.