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 Material Remains)

5min

Standartized Materials

Endpoints to use for the Standartized materials

For the creation of the standardized material remaisn you need to use this API endpoint: https://developers.frontu.com/docs/tasker-api-v2/b3A6MjA1ODY4MzI-create-update-standartized-material-remains

In the standardized material remais you need to use standartized material guid, so you can create it in this endpoint: https://developers.frontu.com/docs/tasker-api-v2/b3A6MzU4MjEwMA-create-update-standartized-material

Or get it from this endpoint: https://developers.frontu.com/docs/tasker-api-v2/b3A6MzU4MjA5OQ-get-standartized-material-list

Also in this endpoint you need to use workspace guid, so you can create it in this endpoint: https://developers.frontu.com/docs/tasker-api-v2/b3A6MzU4MjA5Nw-create-update-workspace

Or get it from this endpoint: https://developers.frontu.com/docs/tasker-api-v2/b3A6MzU4MjA5OA-get-workspace-detail-information

Real-world data mapping examples of most common cases

First of all, as I mentioned you need to get a standartized material and workspaces guid or create a new ones.

So for the get, you just use this endpoint for the standartized material https://developers.frontu.com/docs/tasker-api-v2/b3A6MzU4MjA5OQ-get-standartized-material-list , for the workspaces: https://developers.frontu.com/docs/tasker-api-v2/b3A6MzU4MjA5OA-get-workspace-detail-information and you will get all standartized materials or the workspaces from these endpoints.

If you want to create a new standartized material, please check this link : https://developers.frontu.com/docs/tasker-api-v2/ZG9jOjIwNDY1NTkw-system-x-frontu-standartized-materials

For the workspace creation this one : https://developers.frontu.com/docs/tasker-api-v2/b3A6MzU4MjA5Nw-create-update-workspace

After the workspace and standartized material creation you can create the standartized remains.

Make the POST method and fill in this information:

JSON
|
{
  "standartizedMaterial": "f889fbe9-9d9b-3c8a-8549-e321ee7e3e34",
  "workspace": "f889fbe9-9d9b-3c8a-8549-e321ee7e3e35",
  "serialNumber": 83728347892374899,
  "quantity": 1,
  "systemId": "MAT009",
  "guid": "f889fbe9-9d9b-3c8a-8549-e321ee7e3e39"
}


And then you will get a response:

JSON
|
{
  "version": 1631185935,
  "standartizedMaterial": "f889fbe9-9d9b-3c8a-8549-e321ee7e3e34",
  "quantity": 2,
  "serialNumber": "83728347892374899",
  "workspace": "f889fbe9-9d9b-3c8a-8549-e321ee7e3e351",
  "guid": "f889fbe9-9d9b-3c8a-8549-e321ee7e3e34",
  "created": "2021-09-09T11:12:15+0000",
  "updated": "2021-09-09T11:12:15+0000",
  "deleted": false,
  "systemId": "MAT001"
}


For the GET endpoint and detail information please check this link : https://developers.frontu.com/docs/tasker-api-v2/b3A6MjA1ODY4MzM-get-detail-information-about-standartized-material-remains

IMPORTANT: Do not forget to use query params for the detail information



Updated 31 Jul 2023
Did this page help you?
PREVIOUS
SystemX->Frontu (Custom fields)
NEXT
SystemX->Frontu (Standartized Materials)
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