Fracttal →

Crete a warehouse

This EndPoint can be used to create a warehouse.

Input parameters

ParameterTypeRequiredDescription
codeTextYesWarehouse code.
descriptionTextYesDescription of the warehouse.
addressTextOptionalWarehouse address
stateTextOptionalState/Region
cityTextOptionalCity
countryTextOptionalCountry
zip_codeTextOptionalZip Code
code_parent_locationTextOptionalCode of the location to which the warehouse is to be restricted
external_integrationBoleanOptionalTrue if it is an integrated store, false otherwise (Default false)
activeBoleanOptionalActive or Inactive (Default true)
visible_to_allBoleanOptionalTrue if the store will be visible to all, false otherwise (Default false)

Output parameters

ParameterTypeDescription
codeTextWarehouse code
descriptionTextDescription
addressTextAddress
stateTextState
countryTextCountry
cityTextCity
zip_codeTextZip Code
location_descriptionTextLocated in or is part of
external_integrationBoleanTrue if it is an integration store, false otherwise
activeBoleanTrue if the store is active, false otherwise
visible_to_allBoleanTrue if it is a warehouse is visible to all people regardless of location, false otherwise
allow_negative_stockBoleanTrue if negative stock is permitted, false otherwise
material_request_approvalBoleanTrue if material requisitions can be approved, false otherwise

Example:

Request: (POST) https://app.fracttal.com/api/warehouses

{
  "code": "FTTL-COP",
  "description": "Almacén Fracttal Colombia SAS",
  "address": "Cra 43 N 25 a 129",
  "state": "Antioquia",
  "country": "Colombia",
  "city": "Medellin",
  "zip_code": "050021",
  "external_integration": false,
  "active": true,
  "visible_to_all": false
}
{
    "success": true,
    "message": "200",
    "data": {
        "description": "Almacén Fracttal Colombia SAS",
        "code": "FTTL-COP",
        "address": "Cra 43 N 25 a 129",
        "state": "Antioquia",
        "country": "Colombia",
        "city": "Medellin",
        "zip_code": "050021",
        "location_description": "// ",
        "external_integration": false,
        "active": true,
        "visible_to_all": false,
        "allow_negative_stock": false,
        "material_request_approval": false,
        "prefix_po": null,
        "suffix_po": null,
        "folio_po": 1,
        "prefix": null,
        "folio": 1,
        "suffix": null
    },
    "total": 1
}

Test It

Language