/typesOfEmployment

Description

Enables you to get all available types of employments.

Request

GET https://api.smartrecruiters.com/v1/typesOfEmployment

Path Parameters

n/a

Query Parameters

n/a

Request Body

n/a

Response Body

ListResult containing list of TypeOfEmployment

Example request

curl -i  https://api.smartrecruiters.com/v1/typesOfEmployment

Example response

{
    "offset": 0,
    "limit": 10,
    "totalFound": 4,
    "content": [
        {
            id: "part-time",
            label: "Part-time"
        },
        {
            id: "contract",
            label: "Contract"
        },
        {
            id: "permanent",
            label: "Full-time"
        },
        {
            id: "intern",
            label: "Intern"
        }
    ]
}