PATCHing policy locations

Use the following endpoints to PATCH a specific PolicyLocation for a specific job:

  • PATCH /job/v1/jobs/{jobId}/locations/{locationId}

When you PATCH a job's PolicyLocation, the associated AccountLocation is also updated.

For example, the following specifies an addressLine2 for policy location 201 on job pc:25.

PATCH /job/v1/jobs/pc:25/locations/201

{
  "data": {
    "attributes": {
      "addressLine2": "Suite 505"
    }
  }
}