Back to Collection Items
LOCAL loHttp
LOCAL lnSuccess
LOCAL loJson
LOCAL loResp
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http')
loHttp = CreateObject('Chilkat.Http')
* Use this online tool to generate code from sample JSON: Generate Code to Create JSON
* The following JSON is sent in the request body.
* {
* "type": "Full",
* "format": "XML",
* "queryParameters": {
* "dateFrom": "2021-01-01T00:00:00.000Z",
* "dateTo": "2021-01-31T00:00:00.000Z",
* "statuses": [
* "Valid"
* ],
* "productsInternalCodes": [
* ],
* "receiverSenderType": "0",
* "documentTypeNames": [
* "C",
* "D",
* "I"
* ],
* "representedTaxpayerFilterType": "1",
* "representeeRin": "",
* "branchNumber": "",
* "itemCodes": [
* {
* "codeValue": "",
* "codeType": ""
* }
* ]
* }
* }
* For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject')
loJson = CreateObject('Chilkat.JsonObject')
loJson.UpdateString("type","Full")
loJson.UpdateString("format","XML")
loJson.UpdateString("queryParameters.dateFrom","2021-01-01T00:00:00.000Z")
loJson.UpdateString("queryParameters.dateTo","2021-01-31T00:00:00.000Z")
loJson.UpdateString("queryParameters.statuses[0]","Valid")
loJson.UpdateNewArray("queryParameters.productsInternalCodes")
loJson.UpdateString("queryParameters.receiverSenderType","0")
loJson.UpdateString("queryParameters.documentTypeNames[0]","C")
loJson.UpdateString("queryParameters.documentTypeNames[1]","D")
loJson.UpdateString("queryParameters.documentTypeNames[2]","I")
loJson.UpdateString("queryParameters.representedTaxpayerFilterType","1")
loJson.UpdateString("queryParameters.representeeRin","")
loJson.UpdateString("queryParameters.branchNumber","")
loJson.UpdateString("queryParameters.itemCodes[0].codeValue","")
loJson.UpdateString("queryParameters.itemCodes[0].codeType","")
* Adds the "Authorization: Bearer <access_token>" header.
loHttp.AuthToken = "<access_token>"
loResp = loHttp.PostJson3("https://domain.com/api/v1/documentPackages/requests","application/json",loJson)
IF (loHttp.LastMethodSuccess = 0) THEN
? loHttp.LastErrorText
RELEASE loHttp
RELEASE loJson
CANCEL
ENDIF
? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loResp
RELEASE loHttp
RELEASE loJson
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-d '{
"type": "Full",
"format": "XML",
"queryParameters": {
"dateFrom": "2021-01-01T00:00:00.000Z",
"dateTo": "2021-01-31T00:00:00.000Z",
"statuses": [
"Valid"
],
"productsInternalCodes": [],
"receiverSenderType": "0",
"documentTypeNames": [
"C",
"D",
"I"
],
"representedTaxpayerFilterType": "1",
"representeeRin": "",
"branchNumber": "",
"itemCodes": [
{
"codeValue": "",
"codeType": ""
}
]
}
}'
https://domain.com/api/v1/documentPackages/requests
Postman Collection Item JSON
{
"name": "5.1 Request Document Package as intermediary",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{generatedAccessToken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\r\n \"type\": \"Full\",\r\n \"format\": \"XML\",\r\n \"queryParameters\": {\r\n \"dateFrom\": \"2021-01-01T00:00:00.000Z\",\r\n \"dateTo\": \"2021-01-31T00:00:00.000Z\",\r\n \"statuses\": [\r\n \"Valid\"\r\n ],\r\n \"productsInternalCodes\": [],\r\n \"receiverSenderType\": \"0\",\r\n \"documentTypeNames\": [\r\n \"C\",\r\n \"D\",\r\n \"I\"\r\n ],\r\n \"representedTaxpayerFilterType\": \"1\",\r\n \"representeeRin\": \"\",\r\n \"branchNumber\": \"\",\r\n \"itemCodes\": [\r\n {\r\n \"codeValue\": \"\",\r\n \"codeType\": \"\"\r\n }\r\n ]\r\n }\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{apiBaseUrl}}/api/v1/documentPackages/requests",
"host": [
"{{apiBaseUrl}}"
],
"path": [
"api",
"v1",
"documentPackages",
"requests"
]
}
},
"response": [
]
}