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

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)

id_third_party

Number

Id del tercero

third_parties_code

Text

Third party code

third_parties_name

Text

Name of third party

contact_name

Text

Contact name

contact_email

Text

Contact e-mail

branch_name

Text

Contact branch name

branch_code

Text

Contact branch code

role

Text

Contact position

telephone

Text

Contact phone number

movil

Text

Contact mobile

linkedin

Text

Contact'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