meta {
  name: loanSubmission
  type: http
  seq: 1
}

post {
  url: http://localhost:8000/api/loan/submission
  body: json
  auth: inherit
}

body:json {
  {
    "customerId": "{{customerId}}",
    "amount": 1000000,
    "type": "DAILY",
    "tenor": 24
  }
}

script:post-response {
  bru.setVar('loanId', res.body.data.id)
}
