Paso 1. Enviar la solicitud de trabajo de IA
Endpoint: POST - /v1/hr/related_skills
| Atributo |
Tipo |
Obligatorio |
Descripción |
| content |
String |
Sí |
Habilidad para generar habilidades relacionadas. |
| language |
String |
No |
Especificar el idioma de la salida, por defecto es Inglés. |
| max_quantity |
Number |
No |
Número máximo de habilidades relacionadas a generar. |
EJEMPLO DE SOLICITUD:
{
"content": "Quicken",
"language": "English",
"max_quantity":5
}
EJEMPLO DE RESPUESTA:
{
"status_url": "https://sharpapi.com/api/v1/content/translate/job/status/5de4887a-0dfd-49b6-8edb-9280e468c210",
"job_id": "5de4887a-0dfd-49b6-8edb-9280e468c210"
}
Paso 2. Monitorear y Obtener Resultados del Trabajo de IA
Endpoint: GET - /v1/hr/parse_resume/job/status/:uuid
Un endpoint se utiliza para verificar el progreso del trabajo de API solicitado.
EJEMPLO DE RESULTADO:
{
"data": {
"type": "api_job_result",
"id": "bac70cd7-5347-4443-9632-c82019f73e9a",
"attributes": {
"status": "success",
"type": "hr_related_skills",
"result": {
"skill": "Quicken",
"related_skills": [
{
"name": "Accounting",
"weight": 8.7
},
{
"name": "Bookkeeping",
"weight": 7
},
{
"name": "Financial Management",
"weight": 6.8
},
{
"name": "Financial Reporting",
"weight": 7.5
},
{
"name": "Microsoft Excel",
"weight": 6.5
},
{
"name": "QuickBooks",
"weight": 9.2
}
]
}
}
}
}