Through this API the document management of the third parties created in Fracttal can be consulted.
You can consult the document management of all third parties or one in particular by filtering by the code of the third party.
EndPoint
https://app.fracttal.com/api/third_parties_document_management
Method GET
Input Parameters
Parameter | Type of field | Required | Description |
code | text | Optional | Third parties 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 |
name | Text | Name |
description | Text | Description |
groups_attached_description | Text | Group |
versión | Text | version |
valid_from | Date | Validity start |
valid_through | Date | Validity end |
author | Text | Author |
code_iso | Text | ISO code |
is_warranty | Boolean | In warranty. |
status | Boolean | Validity |
third_parties_name | Text | Description of the third party |
code | Number | Third party code |
Text | Third party email |
Example:
Petition: (GET) https://app.fracttal.com/api/third_parties_document_management/
Example Response:
{
"success": true,
"message": "200",
"data": [
{
"id_company": 69,
"id_group_attached": 8,
"groups_attached_description": "GARANTÍA",
"description": "GARANTÍA POR INCUMPLIMIENTO DE SERVICIO",
"name": "GARANTÍA DE SERVICIO",
"version": "1",
"valid_from": "2021-03-01T05:00:00+00:00",
"valid_through": "2021-11-06T05:00:00+00:00",
"author": "",
"code_iso": "",
"id_third_party": 163,
"id_attached": 12,
"id": 1,
"is_warranty": true,
"status": true,
"third_parties_name": "CISA TRADING S/A",
"code": "39.373.782/0019-79",
"email": null
}
],
"total": 1
}