Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global_Ref.html">Global Unlock Sample for sample code.
http := chilkat.NewHttp()
var success bool
queryParams := chilkat.NewJsonObject()
queryParams.UpdateString("status","ordered")
queryParams.UpdateString("created-at[gt]","2020-04-01")
queryParams.UpdateString("created-at[lt]","2020-10-30")
// Adds the "Authorization: Bearer <access_token>" header.
http.SetAuthToken("<access_token>")
resp := http.QuickRequestParams("GET","https://domain.com/requisitions",queryParams)
if http.LastMethodSuccess() == false {
fmt.Println(http.LastErrorText())
http.DisposeHttp()
queryParams.DisposeJsonObject()
return
}
fmt.Println(resp.StatusCode())
fmt.Println(resp.BodyStr())
resp.DisposeHttpResponse()
http.DisposeHttp()
queryParams.DisposeJsonObject()
Curl Command
curl -G -d "status=ordered"
-d "created-at[gt]=2020-04-01"
-d "created-at[lt]=2020-10-30"
-H "Authorization: Bearer <access_token>"
https://domain.com/requisitions
Postman Collection Item JSON
{
"name": "Retrieve Requisitions Ordered between a date range",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{URL}}/requisitions?status=ordered&created-at[gt]=2020-04-01&created-at[lt]=2020-10-30",
"host": [
"{{URL}}"
],
"path": [
"requisitions"
],
"query": [
{
"key": "status",
"value": "ordered"
},
{
"key": "created-at[gt]",
"value": "2020-04-01"
},
{
"key": "created-at[lt]",
"value": "2020-10-30"
}
]
}
},
"response": [
]
}