For the complete documentation index, see llms.txt. This page is also available as Markdown.

Tags

Operations about tags

Retrieve all tags

get

Retrieve all tags from your instance.

Authorizations
X-N8N-API-KEYstringRequired
Query parameters
limitnumber · max: 250Optional

The maximum number of items to return.

Default: 100Example: 100
cursorstringOptional

Paginate by setting the cursor parameter to the nextCursor attribute returned by the previous request's response. Default value fetches the first "page" of the collection. See pagination for more detail.

Responses
200

Operation successful.

application/json
nextCursorstring · nullableOptional

Paginate through tags by setting the cursor parameter to a nextCursor attribute returned by a previous request. Default value fetches the first "page" of the collection.

Example: MTIzZTQ1NjctZTg5Yi0xMmQzLWE0NTYtNDI2NjE0MTc0MDA
get/tags

Create a tag

post

Create a tag in your instance.

Authorizations
X-N8N-API-KEYstringRequired
Body
idstringRead-onlyOptionalExample: 2tUt1wbLX592XDdX
namestringRequiredExample: Production
createdAtstring · date-timeRead-onlyOptional
updatedAtstring · date-timeRead-onlyOptional
Responses
201

A tag object

application/json
idstringRead-onlyOptionalExample: 2tUt1wbLX592XDdX
namestringRequiredExample: Production
createdAtstring · date-timeRead-onlyOptional
updatedAtstring · date-timeRead-onlyOptional
post/tags

Retrieves a tag

get

Retrieves a tag.

Authorizations
X-N8N-API-KEYstringRequired
Path parameters
idstringRequired

The ID of the tag.

Responses
200

Operation successful.

application/json
idstringRead-onlyOptionalExample: 2tUt1wbLX592XDdX
namestringRequiredExample: Production
createdAtstring · date-timeRead-onlyOptional
updatedAtstring · date-timeRead-onlyOptional
get/tags/{id}

Update a tag

put

Update a tag.

Authorizations
X-N8N-API-KEYstringRequired
Path parameters
idstringRequired

The ID of the tag.

Body
idstringRead-onlyOptionalExample: 2tUt1wbLX592XDdX
namestringRequiredExample: Production
createdAtstring · date-timeRead-onlyOptional
updatedAtstring · date-timeRead-onlyOptional
Responses
200

Tag object

application/json
idstringRead-onlyOptionalExample: 2tUt1wbLX592XDdX
namestringRequiredExample: Production
createdAtstring · date-timeRead-onlyOptional
updatedAtstring · date-timeRead-onlyOptional
put/tags/{id}

Delete a tag

delete

Deletes a tag.

Authorizations
X-N8N-API-KEYstringRequired
Path parameters
idstringRequired

The ID of the tag.

Responses
200

Operation successful.

application/json
idstringRead-onlyOptionalExample: 2tUt1wbLX592XDdX
namestringRequiredExample: Production
createdAtstring · date-timeRead-onlyOptional
updatedAtstring · date-timeRead-onlyOptional
delete/tags/{id}

Last updated

Was this helpful?