Skip to main content

Part Detail Page View

The Part Detail Page View event is used to report a visualization of the details of a part, typically in a dedicated page (sometimes referred to as Part Details Page or PDP). Note that visualization is different from seeing some of the part description, images, etc. as part of a visualization of the results of a search in a list with multiple parts. Knowing that the user visited and viewed the details of a part is a great indication of the interest in that part, potentially as part of validating a result from a search.

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 fieldValue
eventpart_detail_enter
data.partium_idUUID of the part in Partium.
data.search_session_idUUID of the search session.
data.indexIndex number from the list of parts the user was viewing before entering the part detail page. 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_detail_enter",
"data": {
"partium_id": "641d6c1c-c2b8-4192-977c-c7c5a22dfc20",
"search_session_id": "de8977f6-b8cb-4669-8e82-c4fa75acac41",
"index": "4"
}
}