...
Responses for a multiple-resource resources request with pagination may include a total-records
item in the meta
property, which is the total of resource items match the query parameters. total-records
is obsolete and may not be available in future updates of the APIs. Please use the new totalResources
instead. For example, the following response include both total-records
and totalResources
`, but again, totalResources
should be used instead.
Code Block | ||
---|---|---|
| ||
HTTP/2 200 OK { "data": [ { "type": "policies", "id": "policy-6f21f713-f977-5ded-a1d0-15d82ee48931", "attributes": { "reference": "1106467", "description": "Sample Customer Name", "period": { "start": "2024-12-19T00:00:00+00:00", "end": "2025-12-18T23:59:59+00:00" }, "currencyCode": "GBP", "status": "Created" } }, ... ], "meta": { "total-records": 3, "totalResources": 3 } } |
Filter syntax
JSON:API specification v1.1 doesn’t describe a standardized filter syntax. Therefore, the filter syntax varies and depends on the underlying technologies used to develop the APIs. For microservices in the list at the beginning of the Best practices for consuming JSON APIs section, the filter syntax is described in detailed at https://www.jsonapi.net/usage/reading/filtering.html. Please be informed of the following guidelines regarding to the filter syntax:
Legacy filters, e.g.
?filter[lastName]=eq:Smith
are still supported, but they may be removed in a future update of the services. Any new code should use the new filter syntax, and existing code using legacy filters should be updated to use the new filters.New filters MUST be prefixed with
expr:
, for example,?filter=expr:equals(lastName,'Smith')
.
List of Seamless APIs
Microservice | Domain | OpenAPI Documentation |
---|---|---|
Agency Configuration | Seamless Control | https://api.seamless.insure/configuration/swagger/index.html |
Campaign Service | Seamless Service | |
Claims Service | Seamless Claims | |
Compliance Service | Seamless Compliance | |
Contact Center | Seamless Service | |
Customer Service | Seamless Service | |
Document Service | Seamless Documents | |
Finance Service | Seamless Finance | |
Integration | Seamless Service | |
Investment | Seamless Service | |
Loyalty Service | Seamless Service | |
Mail Service | Seamless Service | |
Motor Registry | Seamless Plugins | https://api.seamless.insure/motorregistry/swagger/index.html |
Notification Service | Seamless Service | |
Opportunity | Seamless Service | |
Policy Management | Seamless UW | |
Pricing Engine | Seamless Pricing | |
Process Engine Service | Seamless Flow | |
Quotation Service | Seamless UW | |
Sale workflow service | Seamless Grow | |
Scoring | Seamless UW | |
Search Service | Seamless Service | |
Task Service | Seamless Service | |
Tenant Management | Seamless Control | |
Time Tracking | Seamless Service | |
User Management | Seamless Control |
...