Skip to end of metadata
Go to start of metadata
You are viewing an old version of this content. View the current version.
Compare with Current
View Version History
« Previous
Version 5
Next »
HTTP Request
GET https://${CloudVendor}.${CountryCode}.machlake.com/lakes/${lake_id}/tag
Content-Type: application/json; charset=utf8
x-api-key: {API Key}
Parameters
Optional | Type | Description | Example |
---|
name | string | name of tag | ?name=newtag01 |
Request Example
GET https://aws1.us.machlake.com/lakes/xbacd1234/tag?name=newtag01
Content-Type: application/json; charset=utf8
x-api-key: {API Key}
Response Example
Status 200
{
"status": "success",
"data": {
"name": "newtag01"
}
}
Sample Code
이 예제코드는 Tag name이 ‘sensor1’인 tag 정보를 얻는다.
window(batch)
github
chcp 65001
:: Text Encoding to UTF-8 in CMD
:: Example For Get Tag View API by using curl in window script
:: written by yeony kim
:: sensor1, sensor2 is applied in lake
set API_KEY=YOUR_API_TOKEN
set CONTENT_HEADER="Content-Type: application/json"
set API_HEADER="x-api-key: %API_KEY%"
set LAKE_ID=YOUR_LAKE_ID
set URL=https://%LAKE_ID%.machlake.com/lakes/tag
:: ------------------------------------------------------------------------------------------------- ::
:: CASE - Get Tag Information
set TAG_NAME=sensor
curl -k -G %URL% -H %CONTENT_HEADER% -H %API_HEADER% --data-urlencode "name=%TAG_NAME%"
:: Return Format / not exist tag name in lake
:: {"message":"no such name : sensor","status":"error"}
set TAG_NAME=sensor1
curl -k -G %URL% -H %CONTENT_HEADER% -H %API_HEADER% --data-urlencode "name=%TAG_NAME%"
:: Return Format
:: {"data":{"name":"sensor1"},"status":"success"}
:: ------------------------------------------------------------------------------------------------- ::
Linux(shell)
github
# Text Encoding to UTF-8 in CMD
# Example For Get Tag View API by using curl in ubuntu
LAKE_ID=$YOUR_LAKE_ID
API_KEY=$YOUR_API_KEY
CLOUD_VENDOR=$YOUR_CLOUD_VENDOR
CLOUD_REGION=$YOUR_CLOUD_REGION
TAG_NAME=$YOUR_TAG_NAME
CONTENT_HEADER=Content-Type:application/json
API_HEADER=x-api-key:$API_KEY
URL=https://${CLOUD_VENDOR}.${CLOUD_REGION}.machlake.com/lakes/${LAKE_ID}/tag
# ------------------------------------------------------------------------------------------------- #
# CASE - Get Tag Information
TAG_NAME=sensor
curl -k -G $URL -H $CONTENT_HEADER -H $API_HEADER --data-urlencode "name=$TAG_NAME"
# Return Format / not exist tag name in lake
# {"message":"no such name : sensor","status":"error"}
TAG_NAME=sensor1
curl -k -G $URL -H $CONTENT_HEADER -H $API_HEADER --data-urlencode "name=$TAG_NAME"
# Return Format
# {"data":{"name":"sensor1"},"status":"success"}
# ------------------------------------------------------------------------------------------------- #
javacsript
github
// Example For Get Tag View API by using request in nodejs
// process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0;
const API_KEY = "YOUR_API_TOKEN";
const LAKE_ID = "YOUR_LAKE_ID";
const CLOUD_VENDOR="CLOUD_VENDOR";
const CLOUD_REGION="CLOUD_REGION";
const TAG_NAME = "YOUR_TAG";
var request = require('request');
request.get({
url: `https://${CLOUD_VENDOR}.${CLOUD_REGION}.machlake.com/lakes/${LAKE_ID}/tag`,
qs: {'name': TAG_NAME},
headers: {
'x-api-key': API_KEY
}},
function(error, response, body) {
console.log(body)
})
python
github
"""
Example For Get Tag View API by using requests in python
written by yeony kim
sensor1, sensor2 is applied in lake
"""
import requests
API_KEY = "YOUR_API_TOKEN"
LAKE_ID = "YOUR_LAKE_ID"
CLOUD_VENDOR="CLOUD_VENDOR"
CLOUD_REGION="CLOUD_REGION"
URL = f"https://{CLOUD_VENDOR}.{CLOUD_REGION}.machlake.com/lakes/{LAKE_ID}/tag"
headers = {
'Content-Type': 'application/json',
'x-api-key': API_KEY
}
# CASE - Get Tag Information
params = {
'name': 'sensor'
}
response = requests.get(URL, headers=headers, params=params, verify=False)
print(response.content.decode('utf-8')) # {"message":"no such name : sensor","status":"error"}
# CASE - Get Tag Information
params = {
'name': 'sensor1'
}
response = requests.get(URL, headers=headers, params=params, verify=False)
print(response.content.decode('utf-8')) # {"data":{"name":"sensor1"},"status":"success"}