CV Display

Return informations about the way the user has configured his resumes for display (web, print and mobile available).

Web display

GET https://api.doyoubuzz.com/cv/:id/display/web

Examples

{
    "id": "springfield",
    "color": "#50A3D9"
}

Print display

GET https://api.doyoubuzz.com/cv/:id/display/print

The "displayConfig" parameters show if the user has configured these information to be displayed on their printable version

Examples

{
    "id": "minimal",
    "color": "#50a3d9",
    "displayConfig":
    {
        "id": 1,
        "experiences": true,
        "educations": true,
        "interests": true,
        "presentation": true,
        "skills": true,
        "url": true,
        "picture": false,
        "location": true,
        "drivingLicence": false,
        "maritalStatus": true,
        "address": false,
        "age": false
    }
}

Mobile display

GET https://api.doyoubuzz.com/cv/:id/display/mobile

Examples

{
    "id": "replicant",
    "color": "#50A3D9"
}