Changes for page 3. CalcPackage
Last modified by Giorgi Mdivnishvili on 2024/04/11 17:03
From version 15.1
edited by Giorgi Mdivnishvili
on 2024/04/11 13:18
on 2024/04/11 13:18
Change comment:
There is no comment for this version
To version 15.2
edited by Giorgi Mdivnishvili
on 2024/04/11 16:47
on 2024/04/11 16:47
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -2375,3 +2375,24 @@ 2375 2375 2376 2376 } 2377 2377 {{/success}} 2378 + 2379 + 2380 +== Important == 2381 + 2382 +{{error}} 2383 +=== Implementing Authorization in Subsequent Requests === 2384 + 2385 +For every API request after the initial authentication, it's crucial to include the authorization token in the request header. This ensures your requests are authorized and can access the necessary resources. Here's how to properly include your token: 2386 + 2387 +* **Header Key:** Authorization 2388 +* **Header Value:** Bearer [Your Token Here] - Use the bearer token provided in the initial authentication response. The authorization type should be specified as Bearer Token. 2389 + 2390 +Additionally, to ensure your requests are properly formatted and recognized, include the following headers: 2391 + 2392 +* **Content-Type:** Specify this header as application/json to indicate the format of the request body. 2393 +* **Header Key:** X-nugios-timezone 2394 +* **Header Value:** 240 - Adjust this value to match your local timezone offset in minutes. 2395 + 2396 +Incorporating these headers with their respective values is essential for the successful processing of your API requests. 2397 +{{/error}} 2398 +