메인 콘텐츠로 건너뛰기
POST
/
authenticate
authenticate
curl --request POST \
  --url https://api.notifly.tech/authenticate \
  --header 'Content-Type: application/json' \
  --data '{
  "accessKey": "example1234567890abcdef1234567890ab",
  "secretKey": "EXAMPLEabc9%"
}'
{
  "data": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.example",
  "error": null
}

Body

application/json
accessKey
string
required

노티플라이 프로젝트 설정 페이지에서 확인하실 수 있습니다. 각 프로젝트별로 1개의 Access Key가 존재합니다.

Example:

"example1234567890abcdef1234567890ab"

secretKey
string
required

노티플라이 프로젝트 설정 페이지에서 확인하실 수 있습니다. 각 프로젝트별로 1개의 Secret Key가 존재합니다.

Example:

"EXAMPLEabc9%"

Response

성공적인 인증입니다

data
string

인증 토큰 값입니다 (1시간 유효)

Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.example"

error
string | null

성공 시 null입니다

Example:

null