API Endpoints
Tags
Getting tag list

Base URL

GET
https://v1.empr.cloud/api/v1/folders/{folderId}/tags

Request

Request headers

Headers
Название
Тип / Значение
Описание
X-Token
String
Auth token

URL Parameters

Query parameters
Название
Тип / Значение
Описание
folderId
UUID
ID of the folder

Request examples

1const url =
2  "https://v1.empr.cloud/api/v1/folders/{folderId}/tags"; 
3
4const options = {
5  method: "GET",
6  headers: {
7    "X-Token": "Your Token", 
8  }, 
9};
10
11fetch(url, options)
12  .then((response) => {
13    response.json().then((data) => {
14      console.log(data);
15    });
16  })
17  .catch((error) => {
18    console.error(error);
19  });

Response

Response data

Response
Название
Тип / Значение
Описание
data
Array<Tag>
Array of tags

Response examples

Types

Tag
Название
Тип / Значение
Описание
id
UUID
Unique identifier
user_id
UUID
User identifier
folder_id
UUID
Folder identifier
tag_name
String
Tag name
created_at
Timestamp
Creation date
updated_at
Timestamp
Update date