Skip to main content
GET
/
agency_recruiter_recommendations
Retrieve a list of recommended agency recruiters.
curl --request GET \
  --url https://api.recruitifi.com/v1/agency_recruiter_recommendations \
  --header 'Authorization: Bearer <token>'
[
  {
    "agencyId": "<string>",
    "recruiterId": "<string>",
    "agencyName": "<string>",
    "recruiterName": "<string>",
    "recruiterRating": 123,
    "optimizedFee": true,
    "feeOptions": [
      {
        "feeType": "FLAT_FEE",
        "currency": "USD",
        "feeCents": 123,
        "note": "<string>"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Organization-scoped Bearer authentication header of the form Bearer <token>, where <token> is your organization-scoped token from the Organization Scoped Token flow.

Query Parameters

roleLevel
enum<string>
required
Available options:
Executive,
Senior,
MidLevel,
Junior

Response

200 - application/json

List of recommended agency recruiters.

agencyId
string
recruiterId
string
agencyName
string
recruiterName
string
recruiterRating
integer
optimizedFee
boolean
feeOptions
(Flat Fee · object | Percentage Fee · object)[]