Assignar Integration
Integration architecture for retrieving field execution data from Assignar.
Assignar is commonly used by construction firms to manage field execution.
The platform records operational data such as:
• site diaries
• labour entries
• equipment usage
• safety inspections
Demiton integrates with Assignar to retrieve this operational data and align it with financial systems.
Integration Model
The Assignar adapter retrieves records through the Assignar API.
These records are normalized into a standard response structure before entering the workflow runtime.
This allows Blueprint workflows to operate on consistent datasets regardless of the originating system.
Resource Model
Assignar exposes several logical datasets.
Common examples include:
site_diaries
form_results
projects
Many organizations use form-based workflows inside Assignar.
The form_results resource allows workflows to retrieve these structured form submissions.
Example:
FETCH → assignar.form_results
Labour Extraction
Labour entries often appear within site diary records.
A transformation step extracts structured labour records from the dataset.
Example:
TRANSFORM → extract_labour_entries
This step converts diary records into canonical LabourEntry constructs.
Each record typically includes:
worker
project
date
hours
cost category
Integration Workflow
A typical pipeline using Assignar might include:
FETCH → assignar.site_diaries
TRANSFORM → extract_labour_entries
TRANSFORM → normalize_cost_categories
PUSH → business_central.project_ledger
This ensures labour activity recorded in the field is reflected in the ERP.
Operational Role
Assignar acts as the primary source of field execution data.
Demiton workflows ensure that operational activity recorded in Assignar remains aligned with the financial structure defined in the project estimate.
This alignment allows project performance to be measured reliably throughout execution.
---