PowerBuilder / KSeF / Sprawdzenie statusu aktywnej sesji interaktywnej
Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_QueryParams
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_ElementReferenceNumber
string ls_AcquisitionTimestamp
string ls_InvoiceNumber
string ls_KsefReferenceNumber
string ls_CreationTimestamp
string ls_EntityType
string ls_LastUpdateTimestamp
string ls_ProcessingCode
string ls_ProcessingDescription
string ls_ReferenceNumber
string ls_Timestamp
string ls_NumberOfElements
string ls_PageOffset
string ls_PageSize
integer i
integer li_Count_i
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
loo_QueryParams = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_QueryParams.ConnectToNewObject("Chilkat.JsonObject")
loo_QueryParams.UpdateInt("PageSize",10)
loo_QueryParams.UpdateInt("PageOffset",0)
loo_QueryParams.UpdateString("IncludeDetails","true")
loo_Http.SetRequestHeader("Accept","application/json")
loo_Http.SetRequestHeader("SessionToken","{{apiKey}}")
loo_Resp = loo_Http.QuickRequestParams("GET","https://ksef.mf.gov.pl/api/online/Session/Status",loo_QueryParams)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_QueryParams
return
end if
loo_SbResponseBody = create oleobject
// Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")
loo_Resp.GetBodySb(loo_SbResponseBody)
loo_JResp = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject")
loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0
Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()
li_RespStatusCode = loo_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
Write-Debug "Response Header:"
Write-Debug loo_Resp.Header
Write-Debug "Failed."
destroy loo_Resp
destroy loo_Http
destroy loo_QueryParams
destroy loo_SbResponseBody
destroy loo_JResp
return
end if
destroy loo_Resp
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "creationTimestamp": "<dateTime>",
// "entityType": "<string>",
// "lastUpdateTimestamp": "<dateTime>",
// "processingCode": "<integer>",
// "processingDescription": "<string>",
// "referenceNumber": "27171215-HY-2C82107214-1D5F90FA88-2E",
// "timestamp": "<dateTime>",
// "invoiceStatusList": [
// {
// "elementReferenceNumber": "67730731-BT-BB0B759DA9-D861FFD666-F7",
// "processingCode": "<integer>",
// "processingDescription": "<string>",
// "acquisitionTimestamp": "<dateTime>",
// "invoiceNumber": "<string>",
// "ksefReferenceNumber": "M589364889-24840303-BAD08EE6BCE5-9D"
// },
// {
// "elementReferenceNumber": "23341031-IK-42BD8BA85B-E2BAE0244C-4F",
// "processingCode": "<integer>",
// "processingDescription": "<string>",
// "acquisitionTimestamp": "<dateTime>",
// "invoiceNumber": "<string>",
// "ksefReferenceNumber": "UUX0645446-28171227-5D321BCCA530-F1"
// }
// ],
// "numberOfElements": "<long>",
// "pageOffset": "<integer>",
// "pageSize": "<integer>"
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
ls_CreationTimestamp = loo_JResp.StringOf("creationTimestamp")
ls_EntityType = loo_JResp.StringOf("entityType")
ls_LastUpdateTimestamp = loo_JResp.StringOf("lastUpdateTimestamp")
ls_ProcessingCode = loo_JResp.StringOf("processingCode")
ls_ProcessingDescription = loo_JResp.StringOf("processingDescription")
ls_ReferenceNumber = loo_JResp.StringOf("referenceNumber")
ls_Timestamp = loo_JResp.StringOf("timestamp")
ls_NumberOfElements = loo_JResp.StringOf("numberOfElements")
ls_PageOffset = loo_JResp.StringOf("pageOffset")
ls_PageSize = loo_JResp.StringOf("pageSize")
i = 0
li_Count_i = loo_JResp.SizeOfArray("invoiceStatusList")
do while i < li_Count_i
loo_JResp.I = i
ls_ElementReferenceNumber = loo_JResp.StringOf("invoiceStatusList[i].elementReferenceNumber")
ls_ProcessingCode = loo_JResp.StringOf("invoiceStatusList[i].processingCode")
ls_ProcessingDescription = loo_JResp.StringOf("invoiceStatusList[i].processingDescription")
ls_AcquisitionTimestamp = loo_JResp.StringOf("invoiceStatusList[i].acquisitionTimestamp")
ls_InvoiceNumber = loo_JResp.StringOf("invoiceStatusList[i].invoiceNumber")
ls_KsefReferenceNumber = loo_JResp.StringOf("invoiceStatusList[i].ksefReferenceNumber")
i = i + 1
loop
destroy loo_Http
destroy loo_QueryParams
destroy loo_SbResponseBody
destroy loo_JResp
Curl Command
curl -G -d "PageSize=10"
-d "PageOffset=0"
-d "IncludeDetails=true"
-H "SessionToken: {{apiKey}}"
-H "Accept: application/json"
https://ksef.mf.gov.pl/api/online/Session/Status
Postman Collection Item JSON
{
"name": "Sprawdzenie statusu aktywnej sesji interaktywnej",
"request": {
"auth": {
"type": "apikey",
"apikey": [
{
"key": "key",
"value": "SessionToken",
"type": "string"
},
{
"key": "value",
"value": "{{apiKey}}",
"type": "string"
},
{
"key": "in",
"value": "header",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/online/Session/Status?PageSize=10&PageOffset=0&IncludeDetails=true",
"host": [
"{{baseUrl}}"
],
"path": [
"online",
"Session",
"Status"
],
"query": [
{
"key": "PageSize",
"value": "10"
},
{
"key": "PageOffset",
"value": "0"
},
{
"key": "IncludeDetails",
"value": "true"
}
]
},
"description": "Sprawdzenie statusu obecnego przetwarzania interaktywnego"
},
"response": [
{
"name": "Sprawdzanie statusu sesji zakończone poprawnie",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "SessionToken",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/online/Session/Status?PageSize=10&PageOffset=0&IncludeDetails=true",
"host": [
"{{baseUrl}}"
],
"path": [
"online",
"Session",
"Status"
],
"query": [
{
"key": "PageSize",
"value": "10"
},
{
"key": "PageOffset",
"value": "0"
},
{
"key": "IncludeDetails",
"value": "true"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"creationTimestamp\": \"<dateTime>\",\n \"entityType\": \"<string>\",\n \"lastUpdateTimestamp\": \"<dateTime>\",\n \"processingCode\": \"<integer>\",\n \"processingDescription\": \"<string>\",\n \"referenceNumber\": \"27171215-HY-2C82107214-1D5F90FA88-2E\",\n \"timestamp\": \"<dateTime>\",\n \"invoiceStatusList\": [\n {\n \"elementReferenceNumber\": \"67730731-BT-BB0B759DA9-D861FFD666-F7\",\n \"processingCode\": \"<integer>\",\n \"processingDescription\": \"<string>\",\n \"acquisitionTimestamp\": \"<dateTime>\",\n \"invoiceNumber\": \"<string>\",\n \"ksefReferenceNumber\": \"M589364889-24840303-BAD08EE6BCE5-9D\"\n },\n {\n \"elementReferenceNumber\": \"23341031-IK-42BD8BA85B-E2BAE0244C-4F\",\n \"processingCode\": \"<integer>\",\n \"processingDescription\": \"<string>\",\n \"acquisitionTimestamp\": \"<dateTime>\",\n \"invoiceNumber\": \"<string>\",\n \"ksefReferenceNumber\": \"UUX0645446-28171227-5D321BCCA530-F1\"\n }\n ],\n \"numberOfElements\": \"<long>\",\n \"pageOffset\": \"<integer>\",\n \"pageSize\": \"<integer>\"\n}"
},
{
"name": "Nie znaleziono danych",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "SessionToken",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/online/Session/Status?PageSize=10&PageOffset=0&IncludeDetails=true",
"host": [
"{{baseUrl}}"
],
"path": [
"online",
"Session",
"Status"
],
"query": [
{
"key": "PageSize",
"value": "10"
},
{
"key": "PageOffset",
"value": "0"
},
{
"key": "IncludeDetails",
"value": "true"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"exception\": {\n \"exceptionDetailList\": [\n {\n \"exceptionCode\": \"<integer>\",\n \"exceptionDescription\": \"<string>\"\n }\n ],\n \"serviceCode\": \"<string>\",\n \"serviceCtx\": \"<string>\",\n \"serviceName\": \"<string>\",\n \"timestamp\": \"<dateTime>\",\n \"referenceNumber\": \"20560508-TX-BC1107E227-31DE9417C0-CE\"\n }\n}"
},
{
"name": "Nieautoryzowany dostęp",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "SessionToken",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/online/Session/Status?PageSize=10&PageOffset=0&IncludeDetails=true",
"host": [
"{{baseUrl}}"
],
"path": [
"online",
"Session",
"Status"
],
"query": [
{
"key": "PageSize",
"value": "10"
},
{
"key": "PageOffset",
"value": "0"
},
{
"key": "IncludeDetails",
"value": "true"
}
]
}
},
"status": "Unauthorized",
"code": 401,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"exception\": {\n \"exceptionDetailList\": [\n {\n \"exceptionCode\": \"<integer>\",\n \"exceptionDescription\": \"<string>\"\n }\n ],\n \"serviceCode\": \"<string>\",\n \"serviceCtx\": \"<string>\",\n \"serviceName\": \"<string>\",\n \"timestamp\": \"<dateTime>\",\n \"referenceNumber\": \"20560508-TX-BC1107E227-31DE9417C0-CE\"\n }\n}"
}
]
}