Fracttal →

Query third party contacts

By means of this API it is possible to consult the contacts of third parties.

It is possible to consult the contacts of all third parties or of one in particular by making filters by the code of the third party.

Input parameters

ParameterTypeRequiredDescription
codeTextOptionalCode of the third party to perform the filter.
startIntegerOptionalNumber 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.
limitIntegerOptionalNumber of records to be returned by the query (Maximum 100 - Default value)

Output parameters

ParameterTypeLocation (id_type_item = 1)
id_third_partyNumberId del tercero
third_parties_codeTextThird party code
third_parties_nameTextName of third party
contact_nameTextContact name
contact_emailTextContact e-mail
branch_nameTextContact branch name
branch_codeTextContact branch code
roleTextContact position
telephoneTextContact phone number
movilTextContact mobile
linkedinTextContact's Linkedin Url

Example

Petition: (GET) https://app.fracttal.com/api/third_parties_document_management/

{
    "success": true,
    "message": "200",
    "data": [
        {
            "id": 14708,
            "id_company": 1190,
            "id_third_party": 84,
            "third_parties_code": "5f",
            "third_parties_name": "9300073387",
            "contact_name": "Contacto de prueba",
            "contact_email": "[email protected]",
            "branch_name": "Nombre Sucursal",
            "branch_code": "La sucursal",
            "role": "Cargo del contacto",
            "telephone": "55555555",
            "movil": "3333333333",
            "skype": "id_skype",
            "linkedin": "https://dfadsf.com"
        }
    ],
    "total": 1
}

Test It

Test It

Language