Skip to main content
POST
/
agencies
/
{agencyId}
/
fees
Set the fees for a specific agency
curl --request POST \
  --url https://api.recruitifi.com/v1/agencies/{agencyId}/fees \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "optimizedFee": true,
  "customFees": [
    {
      "feeType": "FLAT_FEE",
      "currency": "USD",
      "feeCents": 123,
      "note": "<string>"
    }
  ]
}
'
{
  "optimizedFee": true,
  "customFees": [
    {
      "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.

Path Parameters

agencyId
string
required

Body

application/json

Agency fees to be set

optimizedFee
boolean

Indicates if the RecruitiFi optimized fee is applied or if custom fees are being used.

customFees
(Flat Fee · object | Percentage Fee · object)[]

List of custom fees.

Response

200 - application/json

Agency fees set

optimizedFee
boolean

Indicates if the RecruitiFi optimized fee is applied or if custom fees are being used.

customFees
(Flat Fee · object | Percentage Fee · object)[]

List of custom fees.