등록된 봇을 수정 할 때 사용되는 API입니다.

BotEdit API Key Detail (Request)

name

type

Description

COMP_CD

string

회사코드

EMP_NO

string

사번

BOT_ID

int

수정할 봇 ID

BOT_NAME

string

수정할 봇 이름

BOT_IP

string

수정할 봇 IP

BOT_PORT

int

수정할 봇 Port

BOT_MODE

int

수정할 봇 동작 방식 (0: Schedule 1: Queue)

STATUS

int

수정할 봇 상태 (0: 미사용 1: 사용 )

BotEdit API & Examples

POST

http://{server ip:port}/api/BotEdit

Request

Content-Type: application/json

{

  • "COMP_CD":"SYMATION",
  • "EMP_NO":"User",
  • "BOT_ID":2,
  • "BOT_NAME":NewBot,
  • "BOT_IP":"192.168.1.111",
  • "BOT_PORT":9988,
  • "BOT_MODE":1,
  • "STATUS":1

}


Response

성공 : {"result":1}

정보 오류 : {"result":0}

동일봇 존재 오류 : {"result":-1}

실패 : {"result":-44}

Created with the Personal Edition of HelpNDoc: Produce online help for Qt applications