Tag
The tag API handles searching with tags
Auxiliary Methods
A valid organization Uuid
A valid environment Uuid
A valid bot Uuid
GET /org/{orgUUID}/env/{envUUID}/bot/{botUUID}/tags HTTP/1.1
Host:
Accept: */*
[
{
"uuid": "text",
"name": "text",
"objectRef": "text",
"tagTypeId": 1
}
]
A valid organization Uuid
A valid environment Uuid
A valid bot Uuid
10
It is an identifier provided by the API client that will be used to identify distributed logs.
GET /org/{orgUUID}/env/{envUUID}/bot/{botUUID}/tags/recent-search HTTP/1.1
Host:
Accept: */*
{
"timestamp": 1,
"errorCode": "text",
"errorType": "API_ERROR",
"message": "text",
"path": "text"
}
It is the organization where the flow is, used to connect to the correct database
It is the environment where the flow is, used to connect to the correct database
It is the bot where the flow is, used to filter tags
It is the parameter used to search for tags related to the entered value
It is the max number of result, default value 6
6
Example: 6
It is an identifier provided by the API client that will be used to identify distributed logs.
GET /org/{orgUUID}/env/{envUUID}/bot/{botUUID}/tags/quicksearch?name=text HTTP/1.1
Host:
Accept: */*
[
{
"uuid": "text",
"name": "text"
}
]
A valid organization Uuid
A valid environment Uuid
A valid bot Uuid
It is an identifier provided by the API client that will be used to identify distributed logs.
Uuids of consulted tags.
PUT /org/{orgUUID}/env/{envUUID}/bot/{botUUID}/tags/add-recent HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 8
[
"text"
]
No content
Last updated
Was this helpful?