Skip to main content
Consulta los datos de un emisor previamente registrado en el sistema.

Request

POST https://{empresa}.mipos.co.cr/api/consultar/emisor
identificacion
number
required
Número de identificación del emisor a consultar.
curl -X POST https://{empresa}.mipos.co.cr/api/consultar/emisor \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer {token}" \
  -d '{
    "identificacion": 3102955154
  }'
{
  "status": "success",
  "data": {
    "identificacion": 3102955154,
    "tipoIdentificacion": 2,
    "nombreComercial": "MI EMPRESA S.A.",
    "correoElectronico": "empresa@ejemplo.com",
    "telefono": "88180000",
    "ambiente": 1
  }
}