Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 404 Bytes

query.md

File metadata and controls

30 lines (18 loc) · 404 Bytes

Query Parameters

Returns the query parameters passed in the URL.

  • URL

/query?someKey=someValue

  • Method

GET

  • Query Params

someKey = someValue

*whatever and as many as you want in the format

  • Expected Responses

    • Success
      • Code: 200
      • Body: {"someKey":"someValue"}
  • Sample Call

curl --location
--request GET 'URL/query?someKey=someValue'