Enhancement

Each section in the CV now has a unique ID you can set when synchronizing data with CV Partner through the API

Each section in the CV now has an external unique identifier you can set via the API. The field has to have a unique value within each section type.

When adding or updating each section in the CV this new field can be used to identify which section is externally managed and then could be used to synchronise from another system using a custom integration.

Example API payload using external_unique_id when posting a certification:



{
“certification”: {
“disabled”: true,
“long_description”: {
“no”: “Norsk beskrivelse”,
“se”: “Svensk beskrivning”,
“int”: “English description”
},
“month”: “12”,
“month_expire”: “01”,
“name”: {
“no”: “Norskt navn”,
“se”: “Svenskt namn”,
“int”: “English name”
},
“order”: 0,
“organiser”: {
“no”: “The organiser in norwegian”,
“se”: “The organiser in swedish”,
“int”: “The organiser in english”
},
“recently_added”: true,
“year”: “2018”,
“year_expire”: “2019”,
“external_unique_id”: “id that uniquely identifies the certification in this CV”
}
}