>_FoxiRef
4xx Client error responses

415Unsupported Media Type

Unsupported media type

#When does this occur?

Returned when the Content-Type is a media type not supported by the server. (e.g., sending JSON to an API that only accepts XML)

#How to handle?

Change the Content-Type header to a media type supported by the server. Check the API documentation.

#Example

HTTP Response
HTTP/1.1 415 Unsupported Media Type
Content-Type: application/json
Date: Tue, 10 Feb 2026 07:16:01 GMT

{
  "status": 415,
  "message": "Unsupported Media Type"
}

#Related Status Codes

이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.

HTTP 415 Unsupported Media Type | Foxi Dev Reference