Integrating members

This page describes the process of integrating user information before registering for the iES service.

Integrating members

If the user requests to register for the iES service, the information received by your server by calling the API of the iES API server must be sent to the user’s smart device.

Join iES
Join iES
{
   "cus_no": "1234567890",
   "used_type": "1",
   "app_type": "1"
}

cus_no is used to identify the user.
app_type is the Customer Code value that can be checked from the console.
used_type refers to the type used. In this process, it is fixed to ‘1’.

The response values of the reqSpEncKey API are shown below. The response codes and messages can be found in the table below.

{
   "result": {
       "cus_no": "1234567890",
       "sp_enc_key": "000000000000000084b4b9936e011723",
       "auth_token": "c782eb27-1e80-4821-bd10-5b9b1db9d69b",
       "code": "0000",
       "message": "성공"
   }
}
Code Description
0000 Success
9999 System under maintenance. Please contact customer support. (Other system error)
5000 Parameter missing
5004 Header Content-Type missing

Check the response value and send it to the app.

Next