Frontu API Sandbox
ClientApi/StandartizedMaterial
Create / Update StandartizedMaterial
1min
POST
https://dev1.frontu.com//client/api/v2/standartized_materials
Allows to create or update standartized material object values.
If you want to update Standartized Material using POST method you need to fill information for guid field or systemId field in request body.
Example how to use custom values:
You need to specify it for example like this:
first value is guid of the custom field (for this case you can select all custom fields in this endpoint - https://tasker.stoplight.io/docs/tasker-api-v2/tasker_swagger.json/paths/~1client~1api~1v2~1customfields~1standartizedmaterials/get ), and second is value of the custom field. "customValues": { "f889fbe9-9d9b-3c8a-8549-e321ee7e3e34": "Custom Value", "f889fbe9-9d9b-3c8a-8549-e321ee7e3e35": "Custom Value 2", "f889fbe9-9d9b-3c8a-8549-e321ee7e3e38": "2" }
Authentication
Authorization
apiKey
Body Parameters
body
object
*
title
string
*
materialType
string
*
serialNumber
string
price
number
*
systemId
string
customValues
string
guid
string
deleted
boolean
Responses
201
Returned when successful
400
Data contains errors
Curl
JS
Ruby
Python
1curl --location 'https://dev1.frontu.com//client/api/v2/standartized_materials' \
2--header 'Accept: application/json' \
3--header 'Content-Type: application/json' \
4--data '{
5 "title": "",
6 "materialType": "",
7 "price": ""
8}'
Responses
201
400
1// Returned when successful
2
Updated 18 Apr 2025
Did this page help you?