> For the complete documentation index, see [llms.txt](https://help.citrusad.com/retail-media-interface/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.citrusad.com/retail-media-interface/integration/ko/data-api/order-data-1.md).

# 주문 데이터

Epsilon Retail Media 는 관련성 높은 광고를 생성하기 위해 주문 데이터가 필요합니다. 주문 데이터를 동기화하는 것은 Epsilon Retail Media 포털 내의 광고주 및 리테일러 대시보드에도 매우 유용한데, 주문이 매출, 전환, 매출액 및 ROAS 계산에 사용되기 때문입니다. 이 데이터는 광고 팀이 투자 효과를 분석하고 이에 대응하여 추가 지출을 기여할 수 있으므로 매우 유용합니다.

<figure><img src="/files/wjX9lVOImVzY91fjt0tM" alt="Reporting.png" width="100%"><figcaption><p>캠페인 화면 이미지</p></figcaption></figure>

## 주문 데이터 동기화

주문 데이터 동기화에는 리테일러가 광고 요청 시 고객의 \*\*`sessionId`\*\*를 전송한 후, Epsilon Retail Media와의 주문 데이터 동기화에서 전송하는 과정이 포함됩니다. 이 정보를 통해 Epsilon Retail Media 는 `adId`의 광고 요청에 대해 제공된 `sessionId`를 검토하고 설정된 기여 기간 내에 적절히 기여를 산정할 수 있습니다.

원하는 경우, `sessionId` 를 장기 해시 고객 식별자로 대체하여 세션 간에 기여를 산정할 수 있습니다. 자세한 내용은 담당 테크니컬 어카운트 매니저에게 문의하세요.

<figure><img src="/files/SBqMWRhG5vOpzyXfVUio" alt="Group 95.png" width="100%"><figcaption></figcaption></figure>

#### 연동 요구 사항

이 연동을 사용하면 아래 예시와 같이 광고 요청 및 주문 확인 시 고객의 고유 세션 식별자를 Epsilon Retail Media 에 전송해야 합니다.

```json
{
   "orders": [
       {
        "customerId": "npc-s243-ir",
        "catalogId": "6adb93d0-7he4-4d4e-9b47-e5d3714c976a",
        "sessionId": "5cat7-9964-4f",
        "orderDate": "2021-12-02T15:00:00Z",
        "id": "3h30e938-c158-4d78-a0af-b48bbwfrcss4",
        "orderItems": [
            {
                  "gtin": "9891998566P",
                  "quantity": 3,
                  "regularUnitPrice": "1.00",
                  "totalOrderItemPriceAfterDiscounts": "3.00"
                }
              ]
            }
    ]
}
```

{% hint style="info" %}
이 `sessionId` 는 다음으로 전송된 광고 요청에 제공된 것과 동일해야 합니다: Epsilon Retail Media.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.citrusad.com/retail-media-interface/integration/ko/data-api/order-data-1.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
