PassThrough Requests for getting the Job related fields

Sample PassThrough requeats for getting the list of possible values of hiringManagerId and recruiterId fields in create job Api for Zoho Recruit.

List Users

Use the id field, in the response, as the hiringManagerId and recruiterId 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": "{\"users\":[{\"role\":{\"name\":\"Recruiter Admin\",\"id\":\"192717000000016369\"},\"customize_info\":{\"notes_desc\":null,\"show_right_panel\":null,\"bc_view\":null,\"show_home\":false,\"show_detail_view\":null,\"unpin_recent_item\":null},\"signature\":null,\"name_format\":\"Salutation,First Name,Last Name\",\"language\":\"en_GB\",\"locale\":\"en_GB\",\"personal_account\":true,\"ntc_notification_type\":null,\"default_tab_group\":\"0\",\"theme\":{\"normal_tab\":{\"font_color\":\"#FFFFFF\",\"background\":\"#222222\"},\"selected_tab\":{\"font_color\":\"#FFFFFF\",\"background\":\"#222222\"},\"new_background\":null,\"background\":\"#F3F0EB\",\"screen\":\"fixed\",\"type\":\"default\"},\"id\":\"192717000000340527\",\"country_locale\":\"en_US\",\"first_name\":\"vk\",\"email\":\"[email protected]\",\"telephony_enabled\":false,\"Reporting_To\":null,\"imap_status\":false,\"decimal_separator\":\"en_US\",\"profile\":{\"name\":\"Administrator\",\"id\":\"192717000000016381\"},\"last_name\":\"C-Job\",\"active\":\"ACTIVE\",\"time_zone\":\"Asia/Kolkata\",\"zuid\":\"60046186365\",\"confirm\":true,\"rtl_enabled\":false,\"full_name\":\"vk C-Job\",\"ezuid\":\"65c7a6b9a4776dbac7c5476bcff98200\",\"territories\":[],\"date_format\":\"MM/dd/yyyy\",\"ntc_enabled\":false,\"status\":\"active\"}],\"info\":{\"per_page\":200,\"count\":1,\"page\":1,\"more_records\":false}}",
            "headers": {
                "Server": "ZGS",
                "Date": "Wed, 03 Sep 2025 13:59:53 GMT",
                "Content-Type": "application/json;charset=utf-8",
                "Connection": "keep-alive",
                "Set-Cookie": "_zcsr_tmp=3a53e003-8240-4665-8a84-8a79e6c79271;path=/;SameSite=Strict;Secure;priority=high",
                "X-Content-Type-Options": "nosniff",
                "Cache-Control": "no-store, no-cache, must-revalidate, private",
                "Pragma": "no-cache",
                "Expires": "Thu, 01 Jan 1970 00:00:00 GMT",
                "X-Frame-Options": "DENY",
                "clientVersion": "ZR_V5_02SEP2025_C",
                "Content-Disposition": "attachment; filename=response.json",
                "X-ACCESSTOKEN-RESET": "2025-09-03T20:29:00+05:30",
                "X-RATELIMIT-RESET": "1756908053452",
                "X-RATELIMIT-REMAINING": "96",
                "X-RATELIMIT-LIMIT": "100",
                "vary": "accept-encoding",
                "Content-Language": "en-US",
                "Strict-Transport-Security": "max-age=64072000; includeSubDomains; preload",
                "content-length": "1192"
            }
        }
    }
}