Chaining
Chaining is a way to continue another test that was previously executed
POST https://www.autokinjs.com/login
Headers:
Content-Type: application/json
{
"username": "juan",
"password": "p3dr0"
}
Response:
{
"sessionId": "2AA21boNhOM5zR3Xgn96qw=="
}
GET https://www.autokinjs.com/user/1001
Headers:
Content-Type: application/json
SessionId: 2AA21boNhOM5zR3Xgn96qw==
Response:
{
"id": 1001,
"name": "Juan Pedro",
"age": 30
}Last updated
Was this helpful?