Create a garnishment

POST {{baseUrl}}/v1/employees/:employee_id/garnishments

Garnishments, or employee deductions, are fixed amounts or percentages deducted from an employee’s pay. They can be deducted a specific number of times or on a recurring basis. Garnishments can also have maximum deductions on a yearly or per-pay-period bases. Common uses for garnishments are court-ordered payments for child support or back taxes. Some companies provide loans to their employees that are repaid via garnishments.

scope: garnishments:write

Request Body

{"amount"=>"<float>", "description"=>"<string>", "court_ordered"=>"<boolean>", "active"=>true, "times"=>nil, "recurring"=>false, "annual_maximum"=>nil, "pay_period_maximum"=>nil, "deduct_as_percentage"=>false}

HEADERS

KeyDatatypeRequiredDescription
X-Gusto-API-VersionstringDetermines the date-based API version associated with your API call. If none is provided, your application's minimum API version is used.
Content-Typestring
Acceptstring

RESPONSES

status: Created

{&quot;uuid&quot;:&quot;96334c6c-4e01-40ac-ac1c-d2fb02a7e371&quot;,&quot;version&quot;:&quot;52b7c567242cb7452e89ba2bc02cb476&quot;,&quot;employee_uuid&quot;:&quot;2d9c45f3-5ab9-4198-90a7-e8bea1ae3ce6&quot;,&quot;active&quot;:true,&quot;amount&quot;:&quot;8.00&quot;,&quot;description&quot;:&quot;Company loan to employee&quot;,&quot;court_ordered&quot;:false,&quot;times&quot;:5,&quot;recurring&quot;:false,&quot;annual_maximum&quot;:null,&quot;pay_period_maximum&quot;:&quot;100.00&quot;,&quot;deduct_as_percentage&quot;:true}