Welcome to the Coperniq API release notes. This section highlights noteworthy changes across endpoints, schemas, and docs.
Recent highlights
- New: AHJs —
GET /ahjs(search, filter, andlat+lnggeo lookup),GET /ahjs/{id}, andPATCH /ahjs/{id}to update custom property values. v2 mirrors these under/v2with the standard success envelope. - Updated:
GET /properties— now documents theahjrecord type (custom AHJ properties only) and adds anisCustomboolean to every property to distinguish custom columns from built-in standard ones. - New: Sections — line items on projects, invoices, and bills can now be grouped into named
sections(matching quotes and work orders); read responses exposesectionNameper line item. - New: Vendors — full CRUD via
GET/POST /vendors,GET/PATCH/DELETE /vendors/{vendorId},GET /vendors/search, and many-to-many project linking viaPOST/DELETE /projects/{projectId}/vendors/{vendorId}. Vendor-specific fields:vendorType(enum),website, andprojectIds. - New: Labels —
GET /labels(filter bytype),POST /labels,GET /labels/{labelId}.typeisWORK(work orders) orASSET. v2 mirrors these under/v2with the standard success envelope. - New: Assets —
GET /assets(filter byaccount_id),POST /assets,GET/PATCH /assets/{assetId}(setisArchived: truevia PATCH to archive). v2 mirrors these under/v2with the standard success envelope.
Looking for a specific date? See the entries below.
Summary
Today’s release adds request/client work order endpoints, consolidates visit schemas, and completes the comments API across projects/requests/clients. We also improved the docs’ structure and fixed operation IDs for navigation.
What’s new?
- Request Work Orders: List, create, and update request work orders.
- Client Work Orders: List and create client work orders.
- Comments API: List/create/update/delete comments for projects, requests, and clients.
Changes
- Work Orders
- POST
/projects/{projectId}/work-ordersrequirestemplateIdand accepts optionalphaseInstanceId(phase must be started when provided). - POST
/requests/{requestId}/work-ordersrequirestemplateId, optionalphaseInstanceId(phase doesn’t need to be started). - POST
/clients/{clientId}/work-ordersrequirestemplateId(no phases). - GET
/requests/{requestId}/work-orderslists request work orders. - PATCH
/requests/{requestId}/work-orders/{workOrderId}updates a request work order.
- POST
- Comments
- Projects: GET
/projects/{projectId}/comments, POST/projects/{projectId}/comments, PATCH/projects/{projectId}/comment/{commentId}, DELETE/projects/{projectId}/comment/{commentId}. - Requests: GET
/requests/{requestId}/comments, POST/requests/{requestId}/comments, PATCH/requests/{requestId}/comment/{commentId}, DELETE/requests/{requestId}/comment/{commentId}. - Clients: GET
/clients/{clientId}/comments, POST/clients/{clientId}/comments, PATCH/clients/{clientId}/comment/{commentId}, DELETE/clients/{clientId}/comment/{commentId}.
- Projects: GET
- Projects
- GET
/projects/{projectId}includesphaseInstancesarray (phase data).
- GET
- Requests
- GET
/requests/{requestId}includesphaseInstancesarray (phase data).
- GET
- Catalog Items
- Cleaned up examples and aligned schemas with public shape.
Notes
- For project work order creation, when
phaseInstanceIdis provided, the phase must already be started. - Request work order creation does not require a started phase.
