API
Ambiente
- Contatos
- Campos Personalizados
- Conversas
- Tags
- Produtos
- Negócios
- Campanhas
- Dashboards
Dashboards
Create Dashboard
POST
/
v3
/
dashboards
curl --request POST \
--url https://api4.kinbox.com.br/v3/dashboards \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"_id": "<string>",
"name": "<string>",
"description": "<string>",
"layout": [
{
"i": "<string>",
"x": 123,
"y": 123,
"w": 123,
"h": 123
}
],
"authorId": {}
}'
{
"id": "<string>",
"_id": "<string>",
"name": "<string>",
"description": "<string>",
"layout": [
{
"i": "<string>",
"x": 123,
"y": 123,
"w": 123,
"h": 123
}
],
"authorId": {},
"workspaceId": 123,
"createdAt": "2023-11-07T05:31:56Z",
"lastUpdateAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
201 - application/json
The response is of type object
.
curl --request POST \
--url https://api4.kinbox.com.br/v3/dashboards \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"_id": "<string>",
"name": "<string>",
"description": "<string>",
"layout": [
{
"i": "<string>",
"x": 123,
"y": 123,
"w": 123,
"h": 123
}
],
"authorId": {}
}'
{
"id": "<string>",
"_id": "<string>",
"name": "<string>",
"description": "<string>",
"layout": [
{
"i": "<string>",
"x": 123,
"y": 123,
"w": 123,
"h": 123
}
],
"authorId": {},
"workspaceId": 123,
"createdAt": "2023-11-07T05:31:56Z",
"lastUpdateAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
Assistant
Responses are generated using AI and may contain mistakes.