apinode
Version:
An API server that can greatly reduce the work needed to implment API services. It can also cooperate with other API node to make it a mesh of services.
31 lines (30 loc) • 630 B
JSON
{
"id": {
"en": "No identifier.",
"zh": "不需識別碼。"
},
"url": "admin/user/accNameOk",
"descTx": {
"en": "Check to see if an account name is available.",
"zh": "查詢某個帳號是否可被使用。"
},
"query": [
{
"key": "accName",
"descTx": {
"zh": "所要查詢的帳號",
"en": "The account name to be verified."
},
"required": true
}
],
"out": [
{
"key": "isOk",
"descTx": {
"en": "If true, the account name is available. Otherwise, it has been used.",
"zh": "true 表示所查詢的帳號可以使用,否則表示已被他人使用。"
}
}
]
}