管理测试人员
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
所有代理都属于某个品牌(商家、组织或群组)。在创建代理之前,您需要先创建品牌。品牌纯粹是组织性的,可帮助您将相关代理分组。
本页上的代码段来自我们的 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 示例。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2026-02-02。
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2026-02-02。"],[],[]]