Main

⌘K
API-Basics
Frontu->SystemX (Periodical check + Filters)
SystemX->Frontu (Clients + Objects + Equipments)
SystemX->Frontu (Custom fields)
SystemX->Frontu (Standartized Material Remains)
SystemX->Frontu (Standartized Materials)
SystemX->Frontu (Task Request)
SystemX -> Frontu (Clients + Objects)
Task templates and task
Webhooks
Frontu API Sandbox
ClientApi/Client
ClientApi/Workspace
ClientApi/StandartizedMaterial
ClientApi/StandartizedWork
ClientApi/ResponsiblePerson
ClientApi/MaterialType
ClientApi/Place
ClientApi/Task
ClientApi/TaskRequest
ClientApi/TaskType
ClientApi/Material
ClientApi/Work
ClientApi/RouteHistory
ClientApi/TaskStatusHistory
ClientApi/Note
ClientApi/CreditStatus
ClientApi/ClientCustomField
ClientApi/TaskCustomField
ClientApi/WorkspaceCustomField
ClientApi/StandartizedWorkCustomField
ClientApi/StandartizedMaterialCustomField
ClientApi/TaskStopReason
ClientApi/File
ClientApi/File/Download
ClientApi/Image
ClientApi/Image/Download
ClientApi/EvaluationForm
ClientApi/User
ClientApi/Equipment
ClientApi/UserTaskTimes
ClientApi/Travels
ClientApi/Evaluations
ClientApi/StandartizedMaterialRemains
ClientApi/WorkspaceResponsiblePerson
Docs powered by
Archbee

SystemX->Frontu (Standartized Materials)

7min

Standartized Materials

Endpoints to use for the Standartized materials

For the creation of the standardized material you need to use this API endpoint: https://developers.frontu.com/docs/tasker-api-v2/tasker_swagger.json/paths/~1client~1api~1v2~1standartized_materials/post

In the standardized material you need to use material type guid, so you can create it in this endpoint: https://developers.frontu.com/docs/tasker-api-v2/tasker_swagger.json/paths/~1client~1api~1v2~1material_types/post

Or get it from this endpoint: https://developers.frontu.com/docs/tasker-api-v2/tasker_swagger.json/paths/~1client~1api~1v2~1material_types/get

Real-world data mapping examples of most common cases

First of all, as I mentioned you need to get a material type guid or create a new one.

So for the get, you just use this endpoint https://developers.frontu.com/docs/tasker-api-v2/tasker_swagger.json/paths/~1client~1api~1v2~1material_types/get and you will get all possible material types data.

If you want to create a new one, you need to use this endpoint: https://developers.frontu.com/docs/tasker-api-v2/tasker_swagger.json/paths/~1client~1api~1v2~1material_types/post

Make the POST method and fill in this information:

JSON
|
{
  "title": "Kilogram",
  "systemId": "MATERIALTYPE1",
  "delted":false
}


IMPORTANT: title is required for this POST method

And then you will get a response:

JSON
|
{
   "version": 1623147256,
   "title": "Kilogram",
   "guid": "839f7481-f647-c8bb-7a89-ee4b2c136c33",
   "created": "2021-06-08T10:14:16+0000",
   "updated": "2021-06-08T10:14:16+0000",
   "deleted": false,
   "systemId": "MATERIALTYPE1"
}


Then you can create the standardized material, fill in information like:

JSON
|
{
  "title": "Standartized material",
  "materialType": "MATERIALTYPE1",
  "serialNumber": 83728347892374892,
  "price": 99.99,
  "systemId": "STANDARTIZEDMATERIAL1"
}


IMPORTANT: title, materialType and the price is required for this POST method

And then you will get a response:

JSON
|
{
   "version": 1623147552,
   "title": "Standartized material",
   "serialNumber": "83728347892374892",
   "hashtag": null,
   "materialType": {
       "title": "Kilogram",
       "guid": "d8ca96bd-b727-ad93-da21-d7786a11f9c9",
       "systemId": "MATERIALTYPE1",
   },
   "guid": "2c92b3c9-ed65-7426-37a7-d5e66dce0a90",
   "created": "2021-06-08T10:19:12+0000",
   "updated": "2021-06-08T10:19:12+0000",
   "deleted": false,
   "systemId": "STANDARTIZEDMATERIAL1",
   "customValues": null
}




Updated 31 Jul 2023
Did this page help you?
PREVIOUS
SystemX->Frontu (Standartized Material Remains)
NEXT
SystemX->Frontu (Task Request)
Docs powered by
Archbee
TABLE OF CONTENTS
Standartized Materials
Endpoints to use for the Standartized materials
Real-world data mapping examples of most common cases
Docs powered by
Archbee