Through this API you can query the public URL of a particular TO.
This functionality is part of the Share TOs add-on.
EndPoint
https://app.fracttal.com/api/work_orders_shared_url/:folio
Input Parameters
Parameter | Field type | Required | Description |
folio | Text | Yes | TO ID. |
Output parameters
Note: All dates returned by Fracttal web services are in UTC-0.
Parameter | Field type | Description |
wo_folio | Text | TO ID |
creation_date | Text | WO creation date |
created_by | Text | Name of Work Order Generator |
personnel_description | Text | Responsible for the WO |
id_status_work_order | Number | Status of the WO |
shared_wo_url | Text | Public URL of the WO |
Output parameters
Example:
Example Request: https://app.fracttal.com/api/work_orders_shared_url/OT-1693
Example Response:
{
"success": true,
"message": "200",
"data": [
{
"wo_folio": "OT-1693",
"creation_date": "2021-05-10T19:21:42.687171+00:00",
"created_by": "Laura Marcela Peña Jaramillo",
"personnel_description": "Fracttal SPA",
"id_status_work_order": 1,
"shared_wo_url": "https://sharedwo.fracttal.com/?69:9d1fd93d-0f56-48d0-89c6-50205079ce75",
"id_company": 69
}
],
"total": 1
}