GET
/
api
/
{session}
/
labels
/
chats
/
{chatId}
Obter etiquetas para a conversa
curl --request GET \
  --url https://api.wappfy.com.br/api/{session}/labels/chats/{chatId} \
  --header 'apikey: <api-key>'
[
  {
    "id": "1",
    "name": "Lead",
    "color": 0,
    "colorHex": "#ff9485"
  }
]

Authorizations

apikey
string
header
required

Apikey

Path Parameters

chatId
string
required

ID da Conversa

Response

200 - application/json
id
string
required

Label ID

Example:

"1"

name
string
required

Label name

Example:

"Lead"

color
number
required

Color number, not hex

Example:

0

colorHex
string
required

Color in hex

Example:

"#ff9485"