테스터 관리

모든 상담사는 브랜드 (비즈니스, 조직 또는 그룹)에 속합니다. 에이전트를 만들기 전에 먼저 브랜드를 만들어야 합니다. 브랜드는 관련 상담사를 그룹화하는 데 도움이 되는 순전히 조직적인 요소입니다.

이 페이지의 코드 스니펫은 Python 샘플에서 가져온 것입니다.

에이전트에 테스터 추가

Python

endpoint_url = (BASE_ENDPOINT + 'testers')

body = {
  "agentId": agentId,
  "phoneNumber": msisdn
}

response = authed_session.post(endpoint_url, data=json.dumps(body))
이 코드는 RBM 관리 API 샘플에서 발췌한 것입니다.

에이전트의 테스터 나열

Python

endpoint_url = (BASE_ENDPOINT +
  'testers?' +
  'agentId=' + agentId)

response = authed_session.get(endpoint_url)
이 코드는 RBM 관리 API 샘플에서 발췌한 것입니다.

테스터 상태 가져오기

Python

endpoint_url = (BASE_ENDPOINT +
  testerId +
  '?agentId=' + agentId)

response = authed_session.get(endpoint_url)
이 코드는 RBM 관리 API 샘플에서 발췌한 것입니다.

테스터 삭제

Python

endpoint_url = (BASE_ENDPOINT +
  testerId +
  '?agentId=' + agentId)

response = authed_session.delete(endpoint_url)
이 코드는 RBM 관리 API 샘플에서 발췌한 것입니다.