> For the complete documentation index, see [llms.txt](https://docs.trackit.so/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.trackit.so/integrations/http-api/error-handling.md).

# 에러 처리

## 에러 처리 방법 <a href="#how-to-handle-error" id="how-to-handle-error"></a>

* Response의 HTTP Code와 detail 메시지를 확인하세요.
* 추후 보완 예정입니다.

**예시** : 고객 레코드에 중복된 이메일 정보로 등록을 요청했을 때 발생하는 에러

```
// 고객 레코드에 중복된 이메일 정보로 등록을 요청했을 때 발생하는 에러
{
    "detail": {
        "code": "W109",
        "message": "The value of the \"email-addresses\" attribute must be unique."
    }
}
```
