For the complete documentation index, see llms.txt. This page is also available as Markdown.

검색 (Search)

검색 관련 사용자 행동 수집 API

사용자 행동수집 - 검색 결과

post
/actions/search/result

검색 결과 수집 API

Header parameters
Content-Typestring · enumRequired

컨텐츠 타입

Possible values:
Idempotency-Keystring · uuidRequired

멱등성 키 - 클라이언트가 호출시 전달해야 함 (UUID)

serviceKeystringRequired

서비스키

requestIdstringRequired

리퀘스트 아이디

Body

사용자에게 검색결과가 노출된 행동을 수집하는 API

specversionstring · enumOptional

스펙 버전

Possible values:
idstring · enumOptional

이벤트 고유 식별자

Possible values:
typestring · enumOptional

이벤트 유형

Possible values:
timestring · date-timeRequired

ISO 8601 UTC 이벤트 생성시간

sourcestringRequired

이벤트 발생 출처

datacontenttypestring · enumOptional

데이터 컨텐츠 타입

Possible values:
dataschemastring · enumOptional

데이터 스키마 경로

Possible values:
Responses
200

수집 성공

No content

post/actions/search/result
POST /actions/search/result HTTP/1.1
Host: statistics.genser.app
Idempotency-Key: 123e4567-e89b-12d3-a456-426614174000
serviceKey: text
requestId: text
Content-Type: application/json
Accept: */*
Content-Length: 998

{
  "specversion": "1.0.0",
  "id": "EVT-VIEW-SEARCH-RESULT",
  "type": "view_search_result",
  "time": "2025-11-28T10:00:00Z",
  "source": "https://shop.groobee.com",
  "data": {
    "@context": "https://schema.org/",
    "@type": "ViewAction",
    "agent": {
      "@type": "Person",
      "identifier": [
        {
          "@type": "PropertyValue",
          "propertyID": "memberId",
          "value": "groobee1234"
        },
        {
          "@type": "PropertyValue",
          "propertyID": "userId",
          "value": "2aa9a562-4182-4c59-b886-2be9d2a36b23"
        },
        {
          "@type": "PropertyValue",
          "propertyID": "cookieId",
          "value": "bb404573-c87f-b4b1-d6e7-f2750499bf06"
        }
      ],
      "gender": "Female",
      "additionalProperty": [
        {
          "@type": "PropertyValue",
          "propertyID": "type",
          "value": "NOMAL"
        },
        {
          "@type": "PropertyValue",
          "propertyID": "grade",
          "value": "VIP"
        },
        {
          "@type": "PropertyValue",
          "propertyID": "age",
          "value": 18
        }
      ]
    },
    "object": {
      "@type": "ItemList",
      "'numberOfItems": 1,
      "'itemListElement": {
        "@type": "ListItem",
        "item": {
          "@type": "Product",
          "sku": "NIKE_0000001",
          "name": "나이키 에어조던"
        },
        "position": 1
      }
    },
    "target": {
      "@type": "EntryPoint",
      "urlTemplate": "https://shop.groobee.com/search"
    }
  }
}

No content

사용자 행동수집 - 검색 제출

post
/actions/search/submitted

검색 제출 수집 API

Header parameters
Content-Typestring · enumRequired

컨텐츠 타입

Possible values:
Idempotency-Keystring · uuidRequired

멱등성 키 - 클라이언트가 호출시 전달해야 함 (UUID)

serviceKeystringRequired

서비스키

requestIdstringRequired

리퀘스트 아이디

Body

사용자가 검색어를 제출한 행동을 수집하는 API

specversionstring · enumOptional

스펙 버전

Possible values:
idstring · enumOptional

이벤트 고유 식별자

Possible values:
typestring · enumOptional

이벤트 유형

Possible values:
timestring · date-timeRequired

ISO 8601 UTC 이벤트 생성시간

sourcestringRequired

이벤트 발생 출처

datacontenttypestring · enumOptional

데이터 컨텐츠 타입

Possible values:
dataschemastring · enumOptional

데이터 스키마 경로

Possible values:
Responses
200

수집 성공

No content

post/actions/search/submitted
POST /actions/search/submitted HTTP/1.1
Host: statistics.genser.app
Idempotency-Key: 123e4567-e89b-12d3-a456-426614174000
serviceKey: text
requestId: text
Content-Type: application/json
Accept: */*
Content-Length: 1034

{
  "specversion": "1.0.0",
  "id": "EVT-SEARCH-SUBMITTED",
  "type": "search_submitted",
  "time": "2025-11-28T10:00:00Z",
  "source": "https://shop.groobee.com",
  "data": {
    "@context": "https://schema.org/",
    "@type": "SearchAction",
    "agent": {
      "@type": "Person",
      "identifier": [
        {
          "@type": "PropertyValue",
          "propertyID": "memberId",
          "value": "groobee1234"
        },
        {
          "@type": "PropertyValue",
          "propertyID": "userId",
          "value": "2aa9a562-4182-4c59-b886-2be9d2a36b23"
        },
        {
          "@type": "PropertyValue",
          "propertyID": "cookieId",
          "value": "bb404573-c87f-b4b1-d6e7-f2750499bf06"
        }
      ],
      "gender": "Female",
      "additionalProperty": [
        {
          "@type": "PropertyValue",
          "propertyID": "type",
          "value": "NOMAL"
        },
        {
          "@type": "PropertyValue",
          "propertyID": "grade",
          "value": "VIP"
        },
        {
          "@type": "PropertyValue",
          "propertyID": "age",
          "value": 18
        }
      ]
    },
    "query": "나이키 에어조던",
    "object": {
      "@type": "Thing",
      "actionOption": [
        {
          "@type": "PropertyValue",
          "propertyID": "search_type",
          "value": "AI"
        },
        {
          "@type": "PropertyValue",
          "propertyID": "color",
          "value": "검정"
        }
      ]
    },
    "target": {
      "@type": "EntryPoint",
      "urlTemplate": "https://shop.groobee.com/search?color=검정"
    }
  }
}

No content

마지막 업데이트

도움이 되었나요?