본문으로 건너뛰기

푸시알림 V1 API Endpoints

🔔 최신화 일자: 2025-06-13

경고

V2버전이 Release됨에 따라 V1버전이 Deprecated 상태로 변경되었습니다.

V1버전 종료일: 2025년 10월 18일 23:59

Obsolete 예정 일 이 후, V1버전은 유지가 아닌 "서비스 중지"되는 점 양해 부탁드립니다.

nachocode 푸시 API는 다양한 엔드포인트를 제공하여 푸시 알림 관리 및 전송을 지원합니다.

이 문서에서는 API 사용법, 요청/응답 형식, 에러 케이스 등을 다룹니다.

[POST] /api/push/v1/messages (Deprecated)

설명

  • 개별적으로 설정된 메시지를 각 유저 ID의 푸시 토큰에 전송합니다.
  • 요청된 유저의 총 푸시 토큰 수에 따라 요청 건수가 차감됩니다.
경고

Obsolete 예정 버전입니다. V2버전(/v2/messages) 사용을 권장합니다.


Request

  • Header

    ParameterTypeRequiredDescription
    x-api-keystringAPI 키
    x-secret-keystringSecret 키
  • Body

    ParameterTypeRequiredDescription
    messagesMessage[]전송할 메시지 배열
  • Example

    {
    "header": { "x-api-key": "APIKEYVALUE", "x-secret-key": "SECRETKEYVALUE" },
    "body": {
    "messages": [
    {
    "userId": "nachoUser1",
    "title": "나쵸코드 업데이트",
    "content": "새로운 기능이 추가되었습니다.",
    "linkURL": "https://nachocode.io"
    },
    {
    "userId": "nachoUser2",
    "title": "알림 메시지",
    "content": "지금 확인하세요!"
    }
    ]
    }
    }

Response

  • Success Response

    • Property

      PropertiesTypeDescription
      statusnumberHTTP 응답 상태 코드 (200)
      responseobject성공/실패한 유저에 대한 상세 결과 정보
    • Example

      {
      "requested": {
      "success": {
      "count": 3,
      "userIds": ["successUser1", "successUser2", "successUser3"]
      },
      "tokenNotFound": {
      "count": 2,
      "userIds": ["notFoundUser5", "notFoundUser6"]
      }
      },
      "failed": { "count": 2, "userIds": ["failedUser7", 123] }
      }

  • Error Response

    • Error Response Object

    • 에러코드
      (샌드박스 혹은 운영환경에서 아래에 명세되지 않은 에러 코드를 수신받을 경우 나쵸코드로 문의해주세요.)

      ErrorCodeStatus CodeMessageDescription
      ERR-AB-PSS-11400Invalid key or messages.전송 요청된 메세지가 없을 경우(빈 배열)
      ERR-AB-PSS-52404Account information has either never been registered or could not be found.FCM Service Account파일 미등록




[POST] /api/push/v1/users(Deprecated)

설명

  • 동일한 제목과 내용으로 여러 유저에게 푸시 알림을 전송합니다.
  • 유저 ID로 조회된 모든 푸시 토큰을 대상으로 전송합니다.
  • 유저 1명당 요청 건수를 차감합니다.
경고

Obsolete 예정 버전입니다. V2버전(/v2/users) 사용을 권장합니다.


Request

  • Header

    ParameterTypeRequiredDescription
    x-api-keystringAPI 키
    x-secret-keystringSecret 키
  • Body

    ParameterTypeRequiredDescription
    userIds(string | number)[]푸시를 전송할 유저 ID 배열
    titlestring푸시 알림 제목
    contentstring푸시 알림 내용
    linkURLstring푸시 클릭 시 이동할 URL

  • Example

    {
    "header": { "x-api-key": "APIKEYVALUE", "x-secret-key": "SECRETKEYVALUE" },
    "body": {
    "userIds": ["nachoUser1", "nachoUser2", 3, 4],
    "title": "나쵸코드 개인화 푸시 기능 추가!",
    "content": "새로운 기능이 추가되었습니다.",
    "linkURL": "https://nachocode.io"
    }
    }

Response

  • Success Response

    • Property

      PropertiesTypeDescription
      statusnumberHTTP 응답 상태 코드 (200)
      responseobject성공/실패한 유저에 대한 상세 결과 정보
    • Example

      {
      "requested": {
      "success": {
      "count": 3,
      "userIds": ["successUser1", "successUser2", "successUser3"]
      },
      "tokenNotFound": {
      "count": 2,
      "userIds": ["notFoundUser5", "notFoundUser6"]
      }
      },
      "failed": { "count": 2, "userIds": ["failedUser7", 123] }
      }

  • Error Response

    • Error Response Object

    • 에러코드
      (샌드박스 혹은 운영환경에서 아래에 명세되지 않은 에러 코드를 수신받을 경우 나쵸코드로 문의해주세요.)

      ErrorCodeStatus CodeMessageDescription
      ERR-AB-PSS-22400Requested user not exist.전송 요청된 유저가 없을 경우 (빈 배열)
      ERR-AB-PSS-23404Account information has either never been
      registered or could not be found.
      FCM Service Account 파일 등록 확인




객체 설명

Message

  • Property

    ParameterTypeRequiredDescription
    userIdstring유저 ID
    titlestring푸시 알림 제목
    contentstring푸시 알림 내용
    linkURLstring푸시 클릭 시 이동할 URL
  • Example

    {
    "userId": "nachoUser1",
    "title": "나쵸코드 업데이트",
    "content": "새로운 기능이 추가되었습니다.",
    "linkURL": "https://nachocode.io"
    }

Error Response Object

  • Property

    ParameterTypeDescription
    statusCodenumber상태 코드
    pathstring요청 경로
    codestring에러 코드
    messagestring에러 메세지
  • Example

    {
    "statusCode": 400,
    "path": "api/nacho/example",
    "code": "ERR-NA-CHO-00",
    "message": "Oops! Something went wrong!"
    }




기타 공용 에러코드

ErrorCodeStatusCodeMessageDescription
ERR-AB-VAL-00400Incorrect request. Server cannot understand request.요청 Body 데이터가 잘못된 경우
ERR-AB-SGK-11400Secret key not found.Secret Key가 전달되지 않았을 경우
ERR-AB-SGK-13401Incorrect secret key.유효하지 않은 Secret Key
ERR-AB-KSY-11400Required parameters missing.API Key가 전달되지 않았을 경우
ERR-AB-KSY-13404Provided key information not found. Please check your key again.유효하지 않은 API Key
ERR-AB-AGK-11400Api key not found.Api Key가 전달되지 않았을 경우
ERR-AB-AGK-12400Invalid api key type.유효하지 않은 API Key