You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
916 B
55 lines
916 B
# @tall = {{url}}/tall/v1.0
|
|
@tall = https://test.tall.wiki/gateway/tall/v1.0
|
|
@tcm = https://test.tall.wiki/gateway/tcm
|
|
@type = content-type: application/json;charset=utf-8
|
|
|
|
### login
|
|
|
|
# @name login
|
|
POST {{tall}}/users/signin
|
|
{{type}}
|
|
|
|
{
|
|
"client": 1,
|
|
"type": 3,
|
|
"data": {
|
|
"identifier": "song",
|
|
"credential": "999999"
|
|
}
|
|
}
|
|
|
|
### send code
|
|
|
|
GET {{tall}}/users/smscode?phone=16603418748
|
|
|
|
|
|
### phone login
|
|
# @name phonelogin
|
|
POST {{tall}}/users/signin
|
|
{{type}}
|
|
|
|
{
|
|
"client": 1,
|
|
"type": 1,
|
|
"data": {
|
|
"identifier": "16603418748",
|
|
"credential": "1111"
|
|
}
|
|
}
|
|
|
|
### 根据团队id查看研发团队相关信息
|
|
|
|
POST {{tcm}}/patient/selSearchCriteriaList
|
|
{{type}}
|
|
Authorization: Bearer {{login.response.body.$.data.token}}
|
|
|
|
# {
|
|
# "param": {
|
|
# "company": "",
|
|
# "researchDirection": "",
|
|
# "teamId": 0,
|
|
# "teamIntroduce": "",
|
|
# "teamLeaderName": "",
|
|
# "teamName": ""
|
|
# }
|
|
# }
|
|
|