Etiquetas
Last updated
Last updated
GET /tag/list HTTP/1.1
Host: apis.trendmulti.com.br
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"keyword": [
"text"
],
"title": "text",
"bgColor": "text",
"fontColor": "text"
}
]GET /tag/{id} HTTP/1.1
Host: apis.trendmulti.com.br
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"keyword": [
"text"
],
"title": "text",
"bgColor": "text",
"fontColor": "text"
}POST /tag/create HTTP/1.1
Host: apis.trendmulti.com.br
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 16
{
"title": "text"
}{
"keyword": [
"text"
],
"title": "text",
"bgColor": "text",
"fontColor": "text"
}PUT /tag/update HTTP/1.1
Host: apis.trendmulti.com.br
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"keyword": [
"text"
],
"title": "text",
"bgColor": "text",
"fontColor": "text"
}