Saltar al contenido

Detalle del cliente

Detalle del cliente

Petición para obtener toda la información de una cliente específico..


Cabeceras
Authorization string
Token de experto (Obligatorio).

Parámetros de consulta (path parameter)
client_id string
client_id del cliente a buscar (Obligatorio).

Respuesta

Object

id number

expert_data object

id number

name string

email string

experts array of numbers

public boolean

status number

platform_data object

nif string

business_name string

email string

phone null

reference null

notes null

province array of numbers

address string

postal_code string

location string

legal_representative_name string

legal_representative_nif string

legal_representation_type string

contacts string

cnaes array of numbers

provinces_to_work array of numbers

applicant_types array of numbers

action_items array of numbers

employees_quantity number

constitution_date string

last_year_billing number

investment_budget number

project_description string

curl
--request GET \
--url 'https://api.fandit.es/api/v2/clients/' \

Respuesta Ejemplo de respuesta
      {
  "id": 3021,
  "expert_data": {
    "id": 45,
    "name": "María Fernández",
    "email": "maria.fernandez@despacho.es"
  },
  "experts": [
    45,
    52
  ],
  "public": false,
  "status": 1,
  "platform_data": {
    "id": 2,
    "name": "FANDIT"
  },
  "nif": "B12345678",
  "business_name": "Innovatech Soluciones SL",
  "email": "contacto@innovatech-soluciones.es",
  "phone": null,
  "reference": null,
  "notes": null,
  "province": [
    28
  ],
  "address": "Calle Alcalá 120, 3ºB",
  "postal_code": "28009",
  "location": "Madrid",
  "legal_representative_name": "Carlos Ruiz Gómez",
  "legal_representative_nif": "12345678Z",
  "legal_representation_type": "Administrador único",
  "contacts": "Carlos Ruiz Gómez - 600111222",
  "cnaes": [
    6201,
    6202
  ],
  "provinces_to_work": [
    28,
    8
  ],
  "applicant_types": [
    1,
    3
  ],
  "action_items": [
    1,
    2
  ],
  "employees_quantity": 18,
  "constitution_date": "2015-03-12",
  "last_year_billing": 850000,
  "investment_budget": 120000,
  "project_description": "Digitalización de procesos internos y desarrollo de nueva plataforma de gestión."
}