added
Added employee deductions flows
 about 1 year ago 
Gusto Embedded now supports a standalone employee deductions flow type. This flow allows you to create and manage employee post-tax deductions/garnishments.
curl --location 'https://api.gusto-demo.com/v1/companies/{{company_uuid}}/flows' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{company_access_token}}' \
--data '{
  "flow_type": "deductions",
  "entity_type": "Employee",
  "entity_uuid": "{{employee_uuid}}"
}'
Review our Flow Types guide to see all our available Flows.
