Grupos

Cria um grupo

post/api/import/groups

Request body

namestring

Nome do grupo

activeboolean

Ativo

id_externostring

Id externo

market_idinteger

Id do mercado

Example request

{
  "name": "et",
  "active": true,
  "id_externo": "ipsam",
  "market_id": 11
}

Response

idstring
namestring
market_idstring
id_externostring
created_atstring
updated_atstring
activestring

Example response

{
  "id": "int",
  "name": "string",
  "market_id": "int",
  "id_externo": "string",
  "created_at": "datetime",
  "updated_at": "datetime",
  "active": "boolean"
}

Changes