get/curriculum
Returns a list with the Curriculums available for the authenticated user. See below for details regarding the Curriculum entity.
Request
Resource URL
https://api.infojobs.net/api/2/curriculum
Security
- User Role: role_candidate
- Scope: cv
Parameters
No parameters available for this operation.
Response
Response fields
Name | Description |
---|---|
id Long |
Deprecated. A numeric Curriculum unique identifier. |
code String |
An alphanumeric Curriculum unique identifier. This is the curriculumId used for all curriculum related operations Maximum length: 100 |
name String |
The name with which the curriculum was saved. Maximum length: 100 |
principal Boolean |
true if the cv is the default curriculum used by the authenticated user to apply to job offers, false otherwise. |
completed Boolean |
true if the curriculum has all mandatory fields informed, false otherwise. |
incompleteSteps Array(String) |
List of steps' names which are not completed in the curriculum. Available values: (personal-data | education | experience | future-job).
|
Error Codes
There is no specific error codes for this operation.
Examples
This example gets the curriculum for the authenticated user.
Request
GET https://api.infojobs.net/api/2/curriculum
Response
[ { "id": 8093186456, "code": "26DBE83E-3048-3952-A401E8D782ACB1C8", "name": "Curriculum 1", "principal": true, "completed": true, "incompleteSteps":["education","experience"] } ]