# 오류

가끔 API 호출이 오류를 생성할 수 있습니다. 여기에서는 요청을 올바르게 포맷하지 않은 경우나 요청을 올바르게 처리하지 못한 경우에 대해 추가 정보를 찾을 수 있습니다.

### 응답 코드

상태 코드 설명

* 400 잘못된 요청
* 401 인증이 필요합니다
* 404 찾을 수 없음
* 406 Accept 헤더가 누락되었습니다. 예시: `Accept: application/json`
* 429 요청이 너무 많음/요청 제한 초과
* 500 내부 서버 오류

### 실패한 요청

상태 코드가 반환될 때 일반적인 포맷 가이드라인이 표시됩니다.

```http
GET https://api.iafcertsearch.com/api/client/v1/resource HTTP/1.1
```

```http
HTTP/1.1 404 잘못된 요청
Content-Type: application/json

{
    "errors": [
      {"code": "not_found", "message": "에러 메시지 설명"},
    ]
}
```


---

# Agent Instructions: 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:

```
GET https://support.iafcertsearch.org/api-developer-guide/api-ko/api-integration/errors.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
