Firma modüllerini getirir.
const response = await fetch('/general/Company/Modules', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "Name": "text", "Description": "text", "IsActive": false, "IsActivation": false } ]
var options = new RestClientOptions("https://apitest.nilvera.com") { MaxTimeout = -1, }; var client = new RestClient(options); var request = new RestRequest("/general/Company/Modules", 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/general/Company/Modules', 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/general/Company/Modules', headers: { 'Authorization': 'Bearer <API KEY>' } }; axios.request(config) .then((response) => { console.log(JSON.stringify(response.data)); }) .catch((error) => { console.log(error); });