Tags
Create tag
POST
/
tags
curl --request POST \
--url https://api.matia.io/v1/tags \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"name": "<string>",
"description": "<string>",
"owner": "<string>"
}'
{
"code": "<string>",
"message": "<string>",
"data": {
"id": "<string>"
}
}
Authorizations
Body
application/json
Response
200
application/json
Successful operation
The response is of type object
.
curl --request POST \
--url https://api.matia.io/v1/tags \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"name": "<string>",
"description": "<string>",
"owner": "<string>"
}'
{
"code": "<string>",
"message": "<string>",
"data": {
"id": "<string>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.