Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 370 Bytes

urlencoded.md

File metadata and controls

19 lines (17 loc) · 370 Bytes

URLEncoded Form Submission

http:
  request:
    method: 'POST'
    url: 'https://some.host/registration'
    body:
      form:
        # urlencoded form data
        urlencoded:
          username: foo
          password: bar          
          first_name: Foo
          last_name: Bar      
  
  response:
    statusCode: '$.ctx.response.statusCode'