Upload Tags

POST /upload/tags : Uploading a file containing multiple tags
file: {FileName}.txt

Note: Repeated tags won't be created again

Example Request

This is an admin protected route, a valid admin JWT is required in the header field

Header

Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1OTU4Mjg1MDQsImlhdCI6IjIwMjAtMDctMjdUMDE6MzY6NDQuNDYwMTkyOS0wNDowMCIsInN1YiI6ImFkbWluIn0.jfC8lgQEcEQxUaG0mNibzeX5BD1uUQ7wQdM0LhxHrBQ

Body

file: {FileName}.txt

File Format:

The file must be in the format of

Tag1
Tag2
Tag3
Tag4
...

where each tag is separated by a newline. Tags with spaces at the front or at the end will be stripped out.

Possible Responses

Immediate Success

{
"code": 1,
"message": "successfully created tags",
"data": {}
}

Failure

{
"code": -1,
"message": "please contact an administrator",
"data": {}
}
Last updated on by Chris Lim