GET : List Educations

This endpoint lets you retrieve all educations use throughout Piloty

This endpoint requires :

brand_admin, media_admin or media_partner roles.

r_jobs scope.

All Educations elements

GET https://api.piloty.fr/educations

{
    "total": 121,
    "data":[
      
       {
            "id": "627d183372f9aba0dccfffed",
            "name": "BEP / CAP",
            "ref": "bep_cap",
            "content": {
                "translation": {
                    "en": "BEP / CAP",
                    "fr": "BEP / CAP"
                }
            }
        },
        {
            "id": "627d198272f9aba0dcd04a1b",
            "name": "A level +3",
            "ref": "a_level_3",
            "content": {
                "translation": {
                    "en": "A level +3",
                    "fr": "BAC +3"
                }
            }
        },
        {...},
    ]
}

Request example

curl -X GET -G "https://api-piloty.fr/educations" \
    -H "Authorization: Bearer PILOTY_TOKEN" \

Last updated