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
Frontu API Sandbox
ClientApi/StandartizedWork

Create / Update StandartizedWork

2min
POST

Allows to create or update standartized work object values.

If you want to update Standartized Work 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~1standartizedworks/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
FORM PARAMETERS
title
string
*
rate
integer
*
nightRate
integer
*
systemId
string
Identifier from external system
guid
string
Identifier from Frontu
deleted
boolean

Mark if entity is archived (1) or active (0)

workType
integer

1 - hours, 2 - units

customValues
string

JSON object for custom field data (for example "guid": "value")

RESPONSES
201
Returned when successful
400
Data contains errors
Curl
Python
PHP
Shell
C#
|
curl --location --request POST 'https://dev1.frontu.com/client/api/v2/standartized_works' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--form 'title=""' \
--form 'rate=""' \
--form 'nightRate=""' \
--form 'systemId=""' \
--form 'guid=""' \
--form 'deleted=""' \
--form 'workType=""' \
--form 'customValues=""'
RESPONSES
201
400
|
// Returned when successful 





Updated 31 Jul 2023
Did this page help you?
PREVIOUS
Get standartized work list
NEXT
Get StandartizedWork detail information
Docs powered by
Archbee
Docs powered by
Archbee