고객사 액세스 토큰 검증
GET https://{auth-domain}/v1.0/auth/customer/token/verify
Headers
Name
Type
Description
Authorization*
String
Bearer {{customer-access-token}}
{
"return": 0,
"message": "success",
"value": {
"login_type": 4,
"uuid": "969fb180-5226-4f77-802f-2a9d915964bd",
"inno_uid": "JkoYuFvEhHHzuTapl4yo7s5HLwCO/9eNI+8sobpblFMdu/+5oTNsbJou0riGTgEC",
"au_id": 5521,
"social_type": 1
}
}key
data type
desc.
login_type
int
로그인 type (고객사 = 5)
uuid
string
access token uuid
account_id
int64
계정 ID
customer_id
int64
고객사 ID
curl --location 'https://{auth-domain}/v1.0/auth/customer/token/verify' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1N...'return
message
desc.
0
success
성공
20000
Invalid jwt token
유효하지 않은 토큰
20001
Expired jwt token
만료된 토큰
Last updated