Part Confirmation
The Part Confirmation event is used to report a user confirmation that the referred part is the one they were searching for. Note that the interpretation of this confirmation should be final and without a doubt. For softer or indirect indications of potential matches see Event: Part Search Relevancy. Knowing that a particular part matches what the user was searching helps improve the performance of the Partium Search Engine.
How to register this event
In order to register this event, use the Analytics API as described in the Getting started article. See the next section for the specific field values for this event.
Field values for this event
Request body field | Value |
---|---|
event | part_confirmed_search |
data.partium_id | UUID of the part in Partium. |
data.search_session_id | UUID of the search session. |
data.index | Index number from the list of parts the user was viewing from which the match was found. The top position would be 0. The pattern for this field is ^([0-9]+). |
For references about how to obtain the partium_id and the search_session_id, refer to SearchResult
of the Find API and SearchOutput
of the Find SDK.
Example JSON schema
{
"event": "part_confirmed_search",
"data": {
"partium_id": "641d6c1c-c2b8-4192-977c-c7c5a22dfc20",
"search_session_id": "de8977f6-b8cb-4669-8e82-c4fa75acac41",
"index": "4"
}
}