C++ / EDS API / Pārbaudīt dokumentu.
Back to Collection Items
#include <CkHttp.h>
#include <CkStringBuilder.h>
#include <CkJsonObject.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http;
bool success;
http.SetRequestHeader("Accept","application/json");
CkStringBuilder sbResponseBody;
success = http.QuickGetSb("https://eds.vid.gov.lv/api/doc/:id/validate",sbResponseBody);
if (success == false) {
std::cout << http.lastErrorText() << "\r\n";
return;
}
CkJsonObject jResp;
jResp.LoadSb(sbResponseBody);
jResp.put_EmitCompact(false);
std::cout << "Response Body:" << "\r\n";
std::cout << jResp.emit() << "\r\n";
int respStatusCode = http.get_LastStatus();
std::cout << "Response Status Code = " << respStatusCode << "\r\n";
if (respStatusCode >= 400) {
std::cout << "Response Header:" << "\r\n";
std::cout << http.lastHeader() << "\r\n";
std::cout << "Failed." << "\r\n";
return;
}
}
Curl Command
curl -X GET
-H "Accept: application/json"
https://eds.vid.gov.lv/api/doc/:id/validate
Postman Collection Item JSON
{
"name": "Pārbaudīt dokumentu.",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/api/doc/:id/validate",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"doc",
":id",
"validate"
],
"variable": [
{
"key": "id",
"value": "25210683",
"description": "(Required) Dokumenta numurs."
}
]
}
},
"response": [
{
"name": "Uzsākta dokumenta validācija.",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/api/doc/:id/validate",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"doc",
":id",
"validate"
],
"variable": [
{
"key": "id",
"value": "25210683",
"description": "(Required) Dokumenta numurs."
}
]
}
},
"status": "Accepted",
"code": 202,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{}"
},
{
"name": "Lietotājs nav autentificēts.",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/api/doc/:id/validate",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"doc",
":id",
"validate"
],
"variable": [
{
"key": "id",
"value": "25210683",
"description": "(Required) Dokumenta numurs."
}
]
}
},
"status": "Unauthorized",
"code": 401,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
},
{
"name": "Dokuments neeksistē vai lietotājam nav tiesību.",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/api/doc/:id/validate",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"doc",
":id",
"validate"
],
"variable": [
{
"key": "id",
"value": "25210683",
"description": "(Required) Dokumenta numurs."
}
]
}
},
"status": "Forbidden",
"code": 403,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
},
{
"name": "Pārsniegts izsaukumu skaita ierobežojums.",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/api/doc/:id/validate",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"doc",
":id",
"validate"
],
"variable": [
{
"key": "id",
"value": "25210683",
"description": "(Required) Dokumenta numurs."
}
]
}
},
"status": "Too Many Requests",
"code": 429,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
}
]
}