BeeMessage API
ApiContatos

Adicionar

POST
/v1/contacts/{contactId}/tags
AuthorizationBearer <token>

Insira seu token de acesso abaixo. No Swagger: Não é necessário digitar "Bearer " antes do token, o sistema adiciona automaticamente.

Na API: As requisições devem incluir o header.

Exemplo: Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...

In: header

Path Parameters

contactId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

tagId*string

Response Body

application/json

curl -X POST "https://core.beemessage.app/v1/contacts/cont_abc123/tags" \  -H "Content-Type: application/json" \  -d '{    "tagId": "tag_abc123"  }'
{
  "success": true,
  "data": {
    "id": "cont_abc123"
  }
}
Empty
Empty
Empty