get https://app.fracttal.com/api/third_parties_document_management
By means of this API, the document management of third parties created in Fracttal can be consulted.
The document management of all the third parties or of one in particular can be consulted by filtering by the third party's code.
Input parameters
Parameter | Type | Required | Description |
---|---|---|---|
code | Text | Optional | Code of the third party to perform the filter. |
start | Integer | Optional | Number of the record from which you want to start the query. All queries are limited to 100 records, when there are more than that number this parameter must be used for pagination. |
limit | Integer | Optional | Number of records to be returned by the query (Maximum 100 - Default value) |
Output parameters
Parameter | Type | Location (id_type_item = 1) |
---|---|---|
name | Text | Name |
description | Text | Description |
groups_attached_description | Text | Group |
versión | Text | version |
valid_from | Date | Valid from |
valid_through | Date | Valid until |
author | Text | Author |
code_iso | Text | ISO Code |
is_warranty | Boolean | Under warranty. |
status | Boolean | Validity |
third_parties_name | Text | Description of the tecero |
code | Number | Third party code |
email | Text | Third party email |
Example
Petition: (GET) https://app.fracttal.com/api/third_parties_document_management/*
{
"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
}
Test It
Test It