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

Tags

List Tags

get

Return a list of all Tags.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
terseintegerOptional

boolean as integer. default 1 (true). 0 for false. true will return a simple array of tags, e.g. [ 'tag1', 'tag2', 'tag3', ... ]

Example: 0
Responses
200Success

No content

get
/api/v1/tags

List Tags by Entity Type

get

Return a list of all Tags.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
entitytypestring · enumRequired

Entity Type of the Tags, e.g. device, flow, vpc

Possible values:
Query parameters
terseintegerOptional

boolean as integer. default 1 (true). 0 for false. true will return a simple array of tags, e.g. [ 'tag1', 'tag2', 'tag3', ... ]

Example: 0
Responses
200Success

No content

get
/api/v1/tags/{entitytype}

Create Flow Tag

post

Create a Tag given the provided object.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
anyOptional
Responses
post
/api/v1/tag/flow

Get Flow Tag

get

Fetches a specific Flow Tag from the ID supplied in the path.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

The ID of the Flow Tag to be returned.

Responses
200Success

No content

get
/api/v1/tag/flow/{id}

Update Flow Tag

put

Update a Flow Tag given the provided object. This does not do a diff. You must send the complete object and have at least 1 match criteria set.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

The ID of the Flow Tag Rule to be updated

Body
anyOptional
Responses
200Success

No content

put
/api/v1/tag/flow/{id}

Delete Flow Tag

delete

Deletes the Flow Tag.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

The ID of the Flow Tag Rule to be deleted

Responses
delete
/api/v1/tag/flow/{id}

No content

Last updated