Service URL/v3/device/account/batchoperate
Parameter | Type | Required | Description |
operator_type | Integer | Yes | Operation type. Value range: [1, 5] (Disused) 1 : Bind a token to one more account. 2 : Bind a token to another account in an overriding manner. 3 : Unbind a token from multiple accounts. 4 : Unbind a token from all accounts.5 : Unbind an account from all tokens. |
account_list | Array | No | List of account IDs. This field is valid and required when operator_type is 5 . Each element contains the account and account_type (for type setting) fields. Example:[{"account":"926@126.com"},{"account":"1527000000"},{"account":"2849249569","account_type":9}] |
token_list | Array | No | List of device IDs. This field is valid and required when operator_type is 4 . |
token_accounts | Array | No | This field is valid and required when operator_type is 1 , 2 , or 3 . Up to 20 tokens can be set in each call. Each token_account consists of 1 token and 1 account_list . Example: [{"token":"token1","account_list":[{"account":"926@126.com"},{"account":"1527000000"}], {"token":"token2","account_list":[{"account":"926@163.com",{"account":"1527000001"}]}] |
account_type Integer | No | Account type, which can be selected during account binding. The default value is 0 . For valid values, see Account Type Value Table. | - |
token append account
API was seldom used and confusing to developers, it had been disused since October 26, 2020. If you have used it before, it will be replaced by the Token clearAndAppendAccount
API.Parameter | Type | Description |
ret_code | Integer | |
err_msg | String | Error message. |
result | Array | Operation status code corresponding to each token or account ["0","1008006"]. |
{"operator_type": 1,"token_accounts": [{"token": "token1","account_list": [{"account": "926@126.com"},{"account": "1527000000"}]},{"token": "token2","account_list": [{"account": "926@163.com"},{"account": "1527000001"}]}]}
{"operator_type": 2,"token_accounts": [{"token": "token1","account_list": [{"account": "926@126.com"},{"account": "1527000000"}]},{"token": "token2","account_list": [{"account": "926@163.com"},{"account": "1527000001"}]}]}
{"operator_type": 3,"token_accounts": [{"token": "token1","account_list": [{"account": "926@126.com"},{"account": "1527000000"}]},{"token": "token2","account_list": [{"account": "926@163.com"},{"account": "1527000001"}]}]}
{"operator_type": 4,"token_list": ["token1","token2","token3"]}
{"operator_type": 5,"account_list": [{"account": "926@126.com"},{"account": "1527000000"}]}
{"ret_code": 0,"err_msg": "NO_ERROR","result": ["0"]}
Was this page helpful?