Definitions
Claimed Product (CP)- The product being claimed by the policyholder.
- The item being claimed by the policyholder.
- The product identified by ValueChecker and/or the Claims Handler to replace the product being claimed by the policyholder. Note: This can be the same product as the Claimed Product - if still available on the market at a reasonable price - or a different product of the same Like-Kind-and-Quality (LKQ).
- The cost to replace the Claimed Product at the time of damage, thus the price to purchase the Replacement Product (RP).
- The calculated value of the Claimed Product after applying the insurer’s depreciation rules. Thus the ACV = RCV - Depreciation.
- A reduction - based on the rules of the insurer - in the value of the Claimed Product over time, due in particular to wear and tear.
- Identifier assigned to very specific groupings of similar products in
ValueChecker, that have the same or similar price regardless of model.
Example: “Apple iPhone 7 32GB Gold”, “Apple iPhone 7 32GB Black”, etc.One vcid can only have 1 alid.
- Identifier assigned to broad groupings of similar products in
ValueChecker, that are of the same model family but can have.
Example: Apple iPhone 7.One alid can have many vcid’s.
- A condition in property insurance policies that states that the insurer would cover the cost of repairing or replacing a covered loss (“Claimed Product”) with property (“Replacement Product”) that is similar in composition and quality. The ValueChecker is calculating the Replacement Products for all Claimed Products that are in the Replacement Categories, based on multiple relevant product specifications defined for each individual category. As a general rule, for all Replacement Categories the Replacement Products should be of the same Brand and not of an older model family compared to the Claimed Product.
- The individual who uses ValueChecker during the claim handling process. This could be a Claim Handler or a Policyholder.
Event Codes
Event Segments
Events codes are 6 character long strings constructed using segments that can be parsed to identify the error reason and API resource. There are 3 segments totalling 6 characters: ABCDEF The segment comprising the 1st and 2nd character denotes the Event Severity.| Segment | Description |
|---|---|
| POS(1,2) | Position 1 and 2 of the Event Code: SEVERITY |
| ER | Prefix segment for events of severity ERROR |
| WA | Prefix segment for events of severity WARN |
| IN | Prefix segment for events of severity INFO |
WARN and INFO events are not currently implemented as of this
documentation. They will be added in an upcoming release.ERROR Events
Calls to the ValueChecker API that result in an error for any reason will result in an error response. These event codes begin with ER.400
The root keys of
error and description are maintained for backwards
compatibility and can be safely ignored. They are deprecated and will be
removed in an upcoming release.Error Segment
The segment comprising the 3rd and 4th character denotes the Error type (when the first segment is ER).The segment comprising the 5th and 6th character denotes the Error location (resource).
| Segment | Description |
|---|---|
| POS(3,4) | Position 3 and 4 of the Event Code: Type |
| AE | Resource already exists |
| IP | A passed parameter(s) is invalid (i.e. expecting INT, got STRING) |
| IT | The bearer token is invalid |
| MP | A required parameter is missing |
| NA | Method requested is not allowed |
| NF | Resource is not found |
| WP | The value of passed parameter is wrong |
| POS(5,6) | Position 3 and 4 of the Event Code: Location |
| SS | The error was raised from /search_suggestion |
| PS | The error was raised from /product_search |
| PR | The error was raised from /prices |
Status Codes
All status codes are standard HTTP status codes.The following status codes are used by the ValueChecker API.
| Status Code | Description |
|---|---|
| 200 | OK |
| 204 | No Content |
| 400 | Bad Request |
Deprecated
cid and category in response object for product_search
200
Deprecation warnings:
cidhas been deprecated and will be removed in a future update. Please use theclient_category_iddirectly instead.categoryhas been deprecated and will be removed in a future update. However, theclient_categorywill return the same information.
List Response for product_search
200
Depraction warnings
cidhas been deprecated and will be removed in a future update. Please use theclient_category_iddirectly instead.
All clients currently using the list response should migrate to the object response before April 1st, 2023. Example list response. See the current object response.
200
product_pic_url in search_suggestion
200
product_pic_urlhas been deprecated and will be removed in a future update. Please usepic_urlinstead.
product_pic_url in prices
200
product_pic_urlinclaimed_producthas been deprecated and will be removed in a future update. Please usepic_urlinstead.
product_picture_url in product_search
200
product_pic_urlinresultshas been deprecated and will be removed in a future update.pic_urlhas been added, and should be used instead.
OAuth Authentication
ValueChecker uses the OAuth 2.0 standard for authentication.Currently the authentication process of a new user to the system is handled internally by ValueChecker. You will be sent an access_token. (Type: Bearer Token.)
To get started using ValueChecker’s API, use the access_token as required for every request. Ask your ValueChecker contact for more information. To include the access_token in a request, include it as an “Authorization” header.
curl example