Through this API document management of the assets created in Fracttal can be consulted.
Document management of all assets can be consulted or consult a particular asset by filtering by code and/or type of asset.
EndPoint
https://app.fracttal.com/api/personnel_document_management/
Method GET
Input Parameters
Parameter | Type of field | Required | Description |
code | text | Optional | Inhouse personnel code. |
start | Entire | Optional | Record number from which the consult will start. By default it starts at item 0. |
limit | Entire | Optional | Final record number that the consult will return. By default 100 records are returned (Maximum value) |
Output Parameters
Parameter | Type of field | Description |
groups_attached_description | Text | Group |
description | Text | Description |
name | Text | Name |
versión | Text | Version |
valid_from | Date | Valid since |
valid_through | Date | Valid until |
author | Text | Author |
code_iso | Text | ISO code |
is_warranty | Boolean | In Warranty. |
status | Boolean | Validity |
personnel_name | Text | Inhouse personnel description |
personnel_name | Text | Inhouse personnel code |
Text | Inhouse personnel email |
Example:
Petition (GET) https://app.fracttal.com/api/personnel_document_management/?code=7845123
Example Response:
{
"success": true,
"message": "200",
"data": [
{
"id_company": 69,
"id_group_attached": 5,
"groups_attached_description": "Certificación",
"description": "Certificación trabajo en alturas realizada por la empresa ABC",
"name": "Certificación trabajo en alturas",
"version": "0.001",
"valid_from": "2019-10-27T00:00:00+00:00",
"valid_through": "2021-10-27T00:00:00+00:00",
"author": "ISO",
"code_iso": "ISO 39001",
"id_personnel": 7,
"id_attached": 11,
"id": 3,
"is_warranty": true,
"status": true,
"personnel_name": "Alejandra Arango",
"code": "7845123",
"email": "[email protected]"
},
],
"total": 1
}