Update an assignment
Assignments are editable up until the related invoice is paid in full.
Path parameters
-
The ID of the desired assignment (e.g.,
an_3mqtUPL2cA
).
Body
-
bind boolean
Indicates whether to start the process of binding coverage, which includes notifying and subsequently charging the independent contractor for the premium amount due. Defaults to
true
. When false, 1099Policy does not notify or schedule a charge. Note that the independent contractor is not issued coverage if bind is set tofalse
. -
contractor string
ID of the contractor
-
coverage_type array[string]
An array of coverage types that can include one or more of the following insurance coverage values:
general
,workers-comp
, andprofessional
. If provided, coverage type is factored into the eligibility determination (i.e., does contractor have an activeworkers-comp
policy, etc). Defaults to the coverage types of the most recent active policy ifcoverage_type
is not provided.Values are
general
,workers-comp
, orprofessional
. -
effective_date integer
The job assignment start date, measured in seconds since the Unix epoch.
-
end_date integer
The projected job assignment end date, measured in seconds since the Unix epoch.
-
job string
ID of the job that the contractor intends to accept.
-
policy string
ID of the policy that you want attached to the assignment. Defaults to the most recent active policy with a matching job category code, work state and contractor home state.
curl \
-X PUT https://api.1099policy.com/api/v1/assignments/{assignment_id} \
-H "Content-Type: application/json" \
-d '{"job":"jb_jsb9KEcTpc","bind":true,"policy":"pl_3mqtUPL2cA","end_date":1646818364,"contractor":"cn_Ehb3bYa","coverage_type":["general","workers-comp"],"effective_date":1646818364}'
{
"job": "jb_jsb9KEcTpc",
"bind": true,
"policy": "pl_3mqtUPL2cA",
"end_date": 1646818364,
"contractor": "cn_Ehb3bYa",
"coverage_type": [
"general",
"workers-comp"
],
"effective_date": 1646818364
}
{
"bind": true,
"certificates": {
"gl_coi_pdf_url": "/bound-policies/prod/gl_coi_pl_wv23Q3lMc1_1691450123.pdf",
"wc_coi_pdf_url": "/bound-policies/prod/wc_coi_pl_wv23Q3lMc1_1691420903.pdf"
},
"contractor": "cn_Ehb3bYa",
"coverage_type": [
"general",
"workers-comp"
],
"created": 1646818364,
"effective_date": 1646818364,
"eligible": {
"message": "Contractor is pre-approved for insurance coverage.",
"result": true
},
"end_date": 1678334737,
"id": "an_5HviNgc2Br",
"job": "jb_jsb9KEcTpc",
"net_rate": 65,
"policy": "pl_WzFRszJhoY"
}