PassThrough Requests for getting the Job related fields

Sample PassThrough requeats for getting the list of possible values for hiringManagerId field in create job Api for Lever.

List Users

Use the id field, in the response, as hiringManagerId in create job api.

A cURL request could look like this:

curl --location 'https://api.getknit.dev/v1.0/passthrough' \
--header 'Authorization: Bearer <YOUR_API_KEY>' \
--header 'X-Knit-Integration-Id: <YOUR_INTEGRATION_ID>' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '{
    "method": "GET",
    "path": "users"
}
'

and the response could look like the following:

{
    "success": true,
    "data": {
        "response": {
            "body": "{\"data\":[{\"id\":\"a9aa1f3a-35f7-4080-8cd7-a5af1fc9d3f4\",\"name\":\"Vivek Kumar\",\"username\":\"vivek\",\"email\":\"[email protected]\",\"accessRole\":\"interviewer\",\"photo\":\"https://lh3.googleusercontent.com/a/ACg8ocIEVF4RGJlGDCww5iNKJapF3uyXmQieKr88k6j6HQH92-0q3g=s96-c\",\"createdAt\":1747978400333,\"deactivatedAt\":null,\"externalDirectoryId\":null,\"linkedContactIds\":[\"a38e5e6f-a0bb-457d-a67c-62f695d3f473\"],\"jobTitle\":null,\"managerId\":null},{\"id\":\"fbdc15bb-0879-4794-b3aa-e477cf0f3c52\",\"name\":\"Nischal Chenna\",\"username\":\"nischal\",\"email\":\"[email protected]\",\"accessRole\":\"super admin\",\"photo\":\"https://lh3.googleusercontent.com/a/ACg8ocKtVXYux7c5dgl-ZiZDtxwkgzBueul3f-aWx7ST0_BD6eiRSQ=s96-c\",\"createdAt\":1738589884739,\"deactivatedAt\":null,\"externalDirectoryId\":null,\"linkedContactIds\":[],\"jobTitle\":\"\",\"managerId\":\"15907561-9dc9-4262-846a-6fbdf27bb74d\"},{\"id\":\"f64345fe-7366-4dd6-b877-a16a00618529\",\"name\":\"Lever Sandbox\",\"username\":\"lever-sb\",\"email\":\"[email protected]\",\"accessRole\":\"super admin\",\"photo\":\"https://lh3.googleusercontent.com/a/ACg8ocJ29mgoXJzYdBFLn6WyEA8FrljJ4YRtdbUkTD3wPpZ7ZN8upA=s96-c\",\"createdAt\":1729518385252,\"deactivatedAt\":null,\"externalDirectoryId\":null,\"linkedContactIds\":[],\"jobTitle\":\"Tester\",\"managerId\":\"15907561-9dc9-4262-846a-6fbdf27bb74d\"},{\"id\":\"ce0a281b-a642-4d56-8d72-e73118dc60b1\",\"name\":\"Akshat Jain\",\"username\":\"akshat\",\"email\":\"[email protected]\",\"accessRole\":\"super admin\",\"photo\":\"https://lh3.googleusercontent.com/a/ACg8ocLt3fbwu_r_jm-ItGdY3q9XQ3WNIDVubFW-klq0DdLk=s96-c\",\"createdAt\":1692248602976,\"deactivatedAt\":null,\"externalDirectoryId\":null,\"linkedContactIds\":null,\"jobTitle\":\"Developer\",\"managerId\":\"15907561-9dc9-4262-846a-6fbdf27bb74d\"},{\"id\":\"e90d809e-6b29-4366-85f9-c086614d9c1c\",\"name\":\"Updesh Umrao\",\"username\":\"updesh\",\"email\":\"[email protected]\",\"accessRole\":\"super admin\",\"photo\":\"https://lh3.googleusercontent.com/a/ACg8ocIrSW_lxElAQPKsZfxphn3-htlwZP78sBYx4BYB2OCxwmyNZg=s96-c\",\"createdAt\":1692160835829,\"deactivatedAt\":null,\"externalDirectoryId\":null,\"linkedContactIds\":null,\"jobTitle\":null,\"managerId\":null},{\"id\":\"15907561-9dc9-4262-846a-6fbdf27bb74d\",\"name\":\"Kunal Mishra\",\"username\":\"kunal\",\"email\":\"[email protected]\",\"accessRole\":\"super admin\",\"photo\":\"https://lh3.googleusercontent.com/a/ACg8ocJNWjaCk-rlimFhJOqc6sKPKi8xNViQlLVt4TydX2Lwtun6WQ=s96-c\",\"createdAt\":1691783908168,\"deactivatedAt\":null,\"externalDirectoryId\":null,\"linkedContactIds\":null,\"jobTitle\":null,\"managerId\":null}],\"hasNext\":false}",
            "headers": {
                "Date": "Tue, 09 Sep 2025 08:32:40 GMT",
                "Content-Type": "application/json; charset=utf-8",
                "Connection": "keep-alive",
                "Vary": "Accept-Encoding",
                "X-Stream-Path": "api",
                "content-length": "2458"
            }
        }
    }
}