Chilkat Online Tools

PowerBuilder / Egyptian eInvoicing SDK R1.5 / 5. Get Receipt Details Anonymously

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_QueryParams
oleobject loo_Resp

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_QueryParams = create oleobject
li_rc = loo_QueryParams.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_QueryParams.UpdateString("dateTimeIssued","2022-03-08T00:00:00Z")

loo_Resp = loo_Http.QuickRequestParams("GET","https://domain.com/api/v1/receipts/:uuid/share",loo_QueryParams)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_QueryParams
    return
end if

Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp


destroy loo_Http
destroy loo_QueryParams

Curl Command

curl -G -d "dateTimeIssued=2022-03-08T00%3A00%3A00Z"
https://domain.com/api/v1/receipts/:uuid/share

Postman Collection Item JSON

{
  "name": "5. Get Receipt Details Anonymously",
  "request": {
    "auth": {
      "type": "noauth"
    },
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{apiBaseUrl}}/api/v1/receipts/:uuid/share?dateTimeIssued=2022-03-08T00:00:00Z",
      "host": [
        "{{apiBaseUrl}}"
      ],
      "path": [
        "api",
        "v1",
        "receipts",
        ":uuid",
        "share"
      ],
      "query": [
        {
          "key": "dateTimeIssued",
          "value": "2022-03-08T00:00:00Z"
        }
      ],
      "variable": [
        {
          "key": "uuid",
          "value": "b4c08c8b273c45d6b824b359d87d957345b0ec6859eb4ad7b68221244ca55d85"
        }
      ]
    }
  },
  "response": [
  ]
}