Chilkat Online Tools

autoit / Egyptian eInvoicing SDK R1.5 / 6. Get Receipt Submission

Back to Collection Items

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

$oHttp = ObjCreate("Chilkat_9_5_0.Http")
Local $bSuccess

$oQueryParams = ObjCreate("Chilkat_9_5_0.JsonObject")
$oQueryParams.UpdateString("DocumentId","a9d6831c554702f36fd782964ad1b4738f83ea2705eafe28d48d2cf64b331af0")
$oQueryParams.UpdateString("ReceiptNumber","1234566788")
$oQueryParams.UpdateString("DocumentTypeCode","R")
$oQueryParams.UpdateString("DocumentTypeName","Return Receipt")
$oQueryParams.UpdateString("DocumentTypeVersionNumber","1.1")
$oQueryParams.UpdateInt("ReceiverId",113317713)
$oQueryParams.UpdateString("ReceiverName","Taxpayer1")
$oQueryParams.UpdateString("Status","Valid")
$oQueryParams.UpdateString("SortBy","DateTimeReceived")
$oQueryParams.UpdateString("SortDir","Asc")
$oQueryParams.UpdateInt("PageNo",1)
$oQueryParams.UpdateInt("PageSize",10)

; Adds the "Authorization: Bearer <access_token>" header.
$oHttp.AuthToken = "<access_token>"

Local $oResp = $oHttp.QuickRequestParams("GET","https://domain.com/api/v1/receiptsubmissions/:submissionUuid/details",$oQueryParams)
If ($oHttp.LastMethodSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite($oResp.StatusCode & @CRLF)
ConsoleWrite($oResp.BodyStr & @CRLF)

Curl Command

curl -G -d "DocumentId=a9d6831c554702f36fd782964ad1b4738f83ea2705eafe28d48d2cf64b331af0"
	-d "ReceiptNumber=1234566788"
	-d "DocumentTypeCode=R"
	-d "DocumentTypeName=Return%20Receipt"
	-d "DocumentTypeVersionNumber=1.1"
	-d "ReceiverId=113317713"
	-d "ReceiverName=Taxpayer1"
	-d "Status=Valid"
	-d "SortBy=DateTimeReceived"
	-d "SortDir=Asc"
	-d "PageNo=1"
	-d "PageSize=10"
	-H "Authorization: Bearer <access_token>"
https://domain.com/api/v1/receiptsubmissions/:submissionUuid/details

Postman Collection Item JSON

{
  "name": "6. Get Receipt Submission",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{generatedAccessToken}}",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{apiBaseUrl}}/api/v1/receiptsubmissions/:submissionUuid/details?DocumentId=a9d6831c554702f36fd782964ad1b4738f83ea2705eafe28d48d2cf64b331af0&ReceiptNumber=1234566788&DocumentTypeCode=R&DocumentTypeName=Return Receipt&DocumentTypeVersionNumber=1.1&ReceiverId=113317713&ReceiverName=Taxpayer1&Status=Valid&SortBy=DateTimeReceived&SortDir=Asc&PageNo=1&PageSize=10",
      "host": [
        "{{apiBaseUrl}}"
      ],
      "path": [
        "api",
        "v1",
        "receiptsubmissions",
        ":submissionUuid",
        "details"
      ],
      "query": [
        {
          "key": "DocumentId",
          "value": "a9d6831c554702f36fd782964ad1b4738f83ea2705eafe28d48d2cf64b331af0"
        },
        {
          "key": "ReceiptNumber",
          "value": "1234566788"
        },
        {
          "key": "DocumentTypeCode",
          "value": "R"
        },
        {
          "key": "DocumentTypeName",
          "value": "Return Receipt"
        },
        {
          "key": "DocumentTypeVersionNumber",
          "value": "1.1"
        },
        {
          "key": "ReceiverId",
          "value": "113317713"
        },
        {
          "key": "ReceiverName",
          "value": "Taxpayer1"
        },
        {
          "key": "Status",
          "value": "Valid"
        },
        {
          "key": "SortBy",
          "value": "DateTimeReceived"
        },
        {
          "key": "SortDir",
          "value": "Asc"
        },
        {
          "key": "PageNo",
          "value": "1"
        },
        {
          "key": "PageSize",
          "value": "10"
        }
      ],
      "variable": [
        {
          "key": "submissionUuid",
          "value": "RAQTYQ327VC4Q9170KJYMG5G10",
          "description": "(Required) "
        }
      ]
    }
  },
  "response": [
  ]
}