Back to Collection Items
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' 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")
set http = Server.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": "Summary",
' "format": "JSON",
' "queryParameters": {
' "dateFrom": "2020-10-01T21:00:28.451Z",
' "dateTo": "2020-12-30T21:00:28.451Z",
' "statuses": [
' "Valid",
' "Cancelled",
' "Rejected"
' ],
' "productsInternalCodes": [
' ],
' "receiverSenderId": "",
' "receiverSenderType": "0",
' "branchNumber": "",
' "itemCodes": [
' {
' "codeValue": "",
' "codeType": ""
' }
' ],
' "documentTypeNames": [
' ]
' }
' }
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject")
set json = Server.CreateObject("Chilkat.JsonObject")
success = json.UpdateString("type","Summary")
success = json.UpdateString("format","JSON")
success = json.UpdateString("queryParameters.dateFrom","2020-10-01T21:00:28.451Z")
success = json.UpdateString("queryParameters.dateTo","2020-12-30T21:00:28.451Z")
success = json.UpdateString("queryParameters.statuses[0]","Valid")
success = json.UpdateString("queryParameters.statuses[1]","Cancelled")
success = json.UpdateString("queryParameters.statuses[2]","Rejected")
success = json.UpdateNewArray("queryParameters.productsInternalCodes")
success = json.UpdateString("queryParameters.receiverSenderId","")
success = json.UpdateString("queryParameters.receiverSenderType","0")
success = json.UpdateString("queryParameters.branchNumber","")
success = json.UpdateString("queryParameters.itemCodes[0].codeValue","")
success = json.UpdateString("queryParameters.itemCodes[0].codeType","")
success = json.UpdateNewArray("queryParameters.documentTypeNames")
' Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"
' resp is a Chilkat.HttpResponse
Set resp = http.PostJson3("https://domain.com/api/v1/documentPackages/requests","application/json",json)
If (http.LastMethodSuccess = 0) Then
Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
Response.End
End If
Response.Write "<pre>" & Server.HTMLEncode( resp.StatusCode) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( resp.BodyStr) & "</pre>"
%>
</body>
</html>
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-d '{
"type": "Summary",
"format": "JSON",
"queryParameters": {
"dateFrom": "2020-10-01T21:00:28.451Z",
"dateTo": "2020-12-30T21:00:28.451Z",
"statuses": [
"Valid",
"Cancelled",
"Rejected"
],
"productsInternalCodes": [],
"receiverSenderId": "",
"receiverSenderType": "0",
"branchNumber": "",
"itemCodes": [
{
"codeValue": "",
"codeType": ""
}
],
"documentTypeNames": []
}
}'
https://domain.com/api/v1/documentPackages/requests
Postman Collection Item JSON
{
"name": "5. Request Document Package",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{generatedAccessToken}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\r\n \"type\": \"Summary\",\r\n \"format\": \"JSON\",\r\n \"queryParameters\": {\r\n \"dateFrom\": \"2020-10-01T21:00:28.451Z\",\r\n \"dateTo\": \"2020-12-30T21:00:28.451Z\",\r\n \"statuses\": [\r\n \"Valid\",\r\n \"Cancelled\",\r\n \"Rejected\"\r\n ],\r\n \"productsInternalCodes\": [],\r\n \"receiverSenderId\": \"\",\r\n \"receiverSenderType\": \"0\",\r\n \"branchNumber\": \"\",\r\n \"itemCodes\": [\r\n {\r\n \"codeValue\": \"\",\r\n \"codeType\": \"\"\r\n }\r\n ],\r\n \"documentTypeNames\": []\r\n }\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{apiBaseUrl}}/api/v1/documentPackages/requests",
"host": [
"{{apiBaseUrl}}"
],
"path": [
"api",
"v1",
"documentPackages",
"requests"
]
}
},
"response": [
]
}