Rapor durumunu GİB den sorgular
const response = await fetch('/earchive/Report/{UUID}/CheckFromGib', { method: 'GET', headers: {}, }); const data = await response.json();
text
var options = new RestClientOptions("https://apitest.nilvera.com") { MaxTimeout = -1, }; var client = new RestClient(options); var request = new RestRequest("/earchive/Report/4d00be4f-7644-4d93-bdb2-4f3aceff4c51/CheckFromGib", Method.Get); request.AddHeader("Authorization", "Bearer <API KEY>"); RestResponse response = await client.ExecuteAsync(request); Console.WriteLine(response.Content);
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://apitest.nilvera.com/earchive/Report/4d00be4f-7644-4d93-bdb2-4f3aceff4c51/CheckFromGib', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'GET', CURLOPT_HTTPHEADER => array( 'Authorization: Bearer <API KEY>' ), )); $response = curl_exec($curl); curl_close($curl); echo $response;
const axios = require('axios'); let config = { method: 'get', maxBodyLength: Infinity, url: 'https://apitest.nilvera.com/earchive/Report/4d00be4f-7644-4d93-bdb2-4f3aceff4c51/CheckFromGib', headers: { 'Authorization': 'Bearer <API KEY>' } }; axios.request(config) .then((response) => { console.log(JSON.stringify(response.data)); }) .catch((error) => { console.log(error); });