Soporte Moffin Solutions
API para la consulta de datos fiscales y financieros de contribuyentes.
https://solutions-docs.moffin.mx/_mock/apis/
https://solutions-api.moffin.mx/api/
Permite obtener el historial laboral de un contribuyente a partir de su CURP. La respuesta inicial confirmará el procesamiento de la consulta, y los datos detallados se enviarán posteriormente mediante un webhook configurado.
Respuesta inicial:
{
"message": "Consulta de historial laboral procesada exitosamente.",
"queryId": "6791b7b4ddf6a1c971a08626"
}https://solutions-docs.moffin.mx/_mock/apis/query/job-history
https://solutions-api.moffin.mx/api/query/job-history
curl -i -X POST \
https://solutions-docs.moffin.mx/_mock/apis/query/job-history \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"curp": "AICA888888HMNJRC08"
}'{ "_id": "6791b9d091fa0dfcd7e8fe67", "service": "JOB_HISTORY", "status": "SUCCESS", "authentication": "MOFFIN", "metadata": { "clientType": "PF", "query": { … } }, "query": { "curp": "AICA888888HMNJRC08" }, "response": { "nss": "19999999999", "curp": "AICA888888HMNJRC08", "fechaEmision": "22/01/2025", "semanasCotizadas": 52, "semanasDescontadas": 0, "semanasReintegradas": 0, "empleos": [ … ] }, "state": { "JOB_HISTORY": { … } }, "organizationId": 1, "organizationSlug": "moffin", "profileId": 1209967, "createdAt": "2025-01-23T03:38:56.954Z", "updatedAt": "2025-01-23T03:39:01.671Z" }