v1

latestOpenAPI 3.1.02026-07-242735131.1 MB
Employment Management

Set contract origin for a contractor employment

Sets the contract_origin for a contractor employment.

  • remote_contract — Remote provides and manages the contract (a contract document is created)
  • custom_remote_contract — A customised Remote contract is used (a contract document is created)
  • provided_by_customer — The employer provides their own contract (no contract document is created)

When provided_by_customer is selected, the contractor can be invited without completing the contract_details onboarding step.

Scopes

CategoryRead only ScopeWrite only Scope (read access implicit)
Manage employments (employments)-Manage employments (employment:write)
post/v1/employments/{employment_id}/contract-origin

Path parameters

employment_idstring required

Employment ID

Request body

contract_origin'remote_contract' | 'custom_remote_contract' | 'provided_by_customer' required
template_type'contractor_agreement' | 'contractor_services_agreement' | 'contractor_statement_of_work' | 'custom_contractor_agreement' | 'custom_contractor_agreement_v2' required

Required when contract_origin is remote_contract or custom_remote_contract, ignored when provided_by_customer

Example request

{
  "contract_origin": "provided_by_customer",
  "template_type": "contractor_agreement"
}

Response

Success

Example response

{
  "data": {
    "status": "ok"
  }
}