# Get a bound test account
# Brief description
- Query the list of test accounts for which the project is bound, where the nickname field can be used to specify test accounts when submitting a task
# Request URL
https://minitest.weixin.qq.com/thirdapi/account/entity_accounts
# How to request
- GET
# parameter
| Parameter Name | Required | type | Introductions |
|---|---|---|---|
| token | yes | string | You can obtain it from "My Information" in the drop-down menu on the right-hand side of your profile in the upper right corner of the page |
| group_en_id | yes | string | Project ID in English, available on item management / product management page |
# Return an example
{
"data": {
"account_list": [{
"create_time": "2022-11-28 10:55:05",
"expired_time": "2023-12-10 15:43:09",
"id": 404,
"is_expired": false,
"nickname": "haha",
"valid": true
}]
},
"msg": "OK",
"rtn": 0,
"timestamp": 1614861228.1035924,
"trace_id": "bb97c56f0b85da64"
}