25 lines
372 B
Plaintext
25 lines
372 B
Plaintext
|
# @name: login
|
||
|
|
||
|
POST {{ baseUrl }}/auth/ HTTP/1.1
|
||
|
Content-type: application/json
|
||
|
|
||
|
{
|
||
|
"email": "test@test.com",
|
||
|
"password": "hornyhorny"
|
||
|
}
|
||
|
|
||
|
###
|
||
|
|
||
|
GET {{ baseUrl }}/auth/bootstrap HTTP/1.1
|
||
|
|
||
|
###
|
||
|
|
||
|
POST {{ baseUrl }}/auth/bootstrap HTTP/1.1
|
||
|
Content-Type: application/json
|
||
|
|
||
|
{
|
||
|
"token": {{ bootstrapToken }},
|
||
|
"email": "test@test.com",
|
||
|
"password": "hornyhorny"
|
||
|
}
|