Contractor Payments

Contractor payments are rather simple as there are no taxes for the employer to pay and the contractor is responsible for paying their own taxes. As such we really just need to submit an amount and pay_date in order for Zeal to process a payment.


API

1 Call Create Contractor Payment.

πŸ””

Note

Remember to replace the placeholders such as {{testApiKey}} in the code samples below.

curl --request POST \
     --url https://api.zeal.com/contractorPayment \
     --header 'Accept: application/json' \
     --header 'Authorization: Bearer {{testApiKey}}' \
     --header 'Content-Type: application/json' \
     --data '
{
     "approval_required": false,
     "companyID": "{{companyID}}",
     "contractorID": "{{contractorID}}",
     "pay_date": "2022-01-15",
     "amount": 2000,
}
'

Congratulations!
You created your first Contractor Payment.


White-Label

  1. Navigate to your Partner Dashboard and ensure that Test Mode is enabled.
  2. Click on a company to access the Employer Dashboard as an Admin.

Zeal Partner Dashboard in Test Mode

  1. Navigate to Pay Contractors.
  2. Fill the details of the contractor payment and then click Create Payment.

Congratulations!
You created your first Contractor Payment.


What’s Next

Learn how contractor payments fit into your payroll solution with our Admin/Employer Dashboard Guide.