SQL Server / KSeF / Pobranie wyników zapytania o faktury
Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Accept', 'application/octet-stream'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'SessionToken', '{{apiKey}}'
DECLARE @bdResponseBody int
-- Use "Chilkat_9_5_0.BinData" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.BinData', @bdResponseBody OUT
EXEC sp_OAMethod @http, 'QuickGetBd', @success OUT, 'https://ksef.mf.gov.pl/api/online/Query/Invoice/Async/Fetch/:QueryElementReferenceNumber/:PartElementReferenceNumber', @bdResponseBody
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @bdResponseBody
RETURN
END
DECLARE @respStatusCode int
EXEC sp_OAGetProperty @http, 'LastStatus', @respStatusCode OUT
PRINT 'response status code = ' + @respStatusCode
EXEC sp_OAGetProperty @http, 'LastResponseHeader', @sTmp0 OUT
PRINT 'response header = ' + @sTmp0
-- The response data is contained in the bdResponseBody object.
-- Your application can choose what to do with it.
-- For example, to save to a file:
EXEC sp_OAMethod @bdResponseBody, 'WriteFile', @success OUT, 'c:/someDir/someFilename.someFileExtension'
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @bdResponseBody
END
GO
Curl Command
curl -X GET
-H "SessionToken: {{apiKey}}"
-H "Accept: application/octet-stream"
https://ksef.mf.gov.pl/api/online/Query/Invoice/Async/Fetch/:QueryElementReferenceNumber/:PartElementReferenceNumber
Postman Collection Item JSON
{
"name": "Pobranie wyników zapytania o faktury",
"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/octet-stream"
}
],
"url": {
"raw": "{{baseUrl}}/online/Query/Invoice/Async/Fetch/:QueryElementReferenceNumber/:PartElementReferenceNumber",
"host": [
"{{baseUrl}}"
],
"path": [
"online",
"Query",
"Invoice",
"Async",
"Fetch",
":QueryElementReferenceNumber",
":PartElementReferenceNumber"
],
"variable": [
{
"key": "QueryElementReferenceNumber",
"value": "56810128-EL-96284D87EE-8DDB16145F-B3"
},
{
"key": "PartElementReferenceNumber",
"value": "56810128-EL-96284D87EE-8DDB16145F-B3"
}
]
},
"description": "Pobranie wyników zapytania o faktury"
},
"response": [
{
"name": "OK",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/octet-stream"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "SessionToken",
"value": "<API Key>"
}
],
"url": {
"raw": "{{baseUrl}}/online/Query/Invoice/Async/Fetch/:QueryElementReferenceNumber/:PartElementReferenceNumber",
"host": [
"{{baseUrl}}"
],
"path": [
"online",
"Query",
"Invoice",
"Async",
"Fetch",
":QueryElementReferenceNumber",
":PartElementReferenceNumber"
],
"variable": [
{
"key": "QueryElementReferenceNumber"
},
{
"key": "PartElementReferenceNumber"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "application/octet-stream"
}
],
"cookie": [
],
"body": "{}"
},
{
"name": "Nieprawidłowe wywołanie",
"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/Query/Invoice/Async/Fetch/:QueryElementReferenceNumber/:PartElementReferenceNumber",
"host": [
"{{baseUrl}}"
],
"path": [
"online",
"Query",
"Invoice",
"Async",
"Fetch",
":QueryElementReferenceNumber",
":PartElementReferenceNumber"
],
"variable": [
{
"key": "QueryElementReferenceNumber"
},
{
"key": "PartElementReferenceNumber"
}
]
}
},
"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/Query/Invoice/Async/Fetch/:QueryElementReferenceNumber/:PartElementReferenceNumber",
"host": [
"{{baseUrl}}"
],
"path": [
"online",
"Query",
"Invoice",
"Async",
"Fetch",
":QueryElementReferenceNumber",
":PartElementReferenceNumber"
],
"variable": [
{
"key": "QueryElementReferenceNumber"
},
{
"key": "PartElementReferenceNumber"
}
]
}
},
"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}"
},
{
"name": "Nie znaleziono wyszukiwanej treści",
"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/Query/Invoice/Async/Fetch/:QueryElementReferenceNumber/:PartElementReferenceNumber",
"host": [
"{{baseUrl}}"
],
"path": [
"online",
"Query",
"Invoice",
"Async",
"Fetch",
":QueryElementReferenceNumber",
":PartElementReferenceNumber"
],
"variable": [
{
"key": "QueryElementReferenceNumber"
},
{
"key": "PartElementReferenceNumber"
}
]
}
},
"status": "Not Found",
"code": 404,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": ""
}
]
}