Interface 3: Adding student information
Brief description: Add student information, enter parameter is JSON type
Request Url:http://api.nnzhp.cn/api/user/add_stu
Request mode: Post, parameter is JSON type
Name of parameter |
Must-Choose |
Type |
Description |
Name |
Y |
String |
Student Name |
Grade |
Y |
String |
Class |
Phone |
Y |
Int |
Phone |
Sex |
N |
String |
Sex, do not pass the default male |
Age |
N |
Int |
Age, does not pass the default 18 |
Addr |
N |
String |
Address, do not pass the default Beijing changping |
1, click Newtab, select Post, address bar input Url:http://api.nnzhp.cn/api/user/add_stu
2, click Body, option Raw, enter key value pairs
{
"Name": "Dazong",
"Grade": "Tianxie",
"Phone": "18822222222",
"Addr": "Beijingwangjing"
}
3, click Send To view the returned results
{
"Error_code": 1000,
"MSG": "Operation succeeded!" "
}
20171211-python Automation-Interface Test-postman-psot-JSON parameters