User APIs

The User get endpoint allows you to search for a specific user based on email/id

get/api/external/user/get

Query parameters

idinteger

The integer ID for the user in Recruiterflow

emailstring

The email ID of the user in Recruiterflow

Headers

RF-Api-Keystring

Response

Auto generated using Swagger Inspector

{"stackTrail":"paths:/api/external/user/get:get:responses:200:content:application/json:schema","oasType":"schema","type":"unknown","example":{"email":"test@outlook.com","first_name":"Manish","id":40201,"img_link":null,"last_name":"Kotian","middle_name":"","name":"Manish Kotian","roles":[{"id":1,"name":"Admin"}]}}

Example response

{
  "email": "test@outlook.com",
  "first_name": "Manish",
  "id": 40201,
  "img_link": null,
  "last_name": "Kotian",
  "middle_name": "",
  "name": "Manish Kotian",
  "roles": [
    {
      "id": 1,
      "name": "Admin"
    }
  ]
}

Changes