- name: Calculate score
  type: httpRequest
  retries: 3
  method: POST
  url: http://example.com/myEndpoint/{{candidate.email}}
  body: "can be a string with embedded values {{_secrets.mySecret}} {{candidate.id}}"
- name: Calculate score 2
  type: httpRequest
  retries: 3
  method: POST
  url: http://example.com/myEndpoint/{{candidate.email}}
  body: "Bearer token {{_vars.myVar}} {{_secrets.secret2}}"
- name: Calculate score 3
  type: httpRequest
  retries: 3
  method: POST
  url: http://example.com/myEndpoint/{{candidate.email}}
  body:
    myProp: "Bearer token {{_vars.myVar}} {{_secrets.secret2}}"
