latestOpenAPI 3.0.32026-08-101200629.5 KB

2c51a28d0f48

Empresa
Produtos e Serviços
Produtos

Criar Produto

Criar Produto

post/api/products

Request body

Example request

{
  "data": {
    "attributes": {
      "item_code": 777777,
      "item_description": "Product with a family",
      "item_family_id": 4,
      "sales_price": 100,
      "tax_code": "NOR",
      "type": "Product"
    },
    "type": "products"
  }
}

Response

Sucesso

Example response

{
  "data": {
    "attributes": {
      "applied_tax_code": "NOR",
      "is_active": true,
      "item_code": "777777",
      "item_description": "Product with a family",
      "sales_price": 100,
      "sales_price_vat_display": 123,
      "tax_code": "NOR"
    },
    "id": "21",
    "relationships": {
      "company": {
        "data": {
          "id": "800000046",
          "type": "current_company"
        }
      },
      "item_families": {
        "data": {
          "id": "4",
          "type": "item_families"
        }
      },
      "unit_of_measure": {
        "data": {
          "id": "2",
          "type": "units_of_measure"
        }
      }
    },
    "type": "products"
  },
  "meta": {
    "observed": {
      "scalar": 1
    }
  }
}