Faturayı GİB'den Kontrol Eder

Faturayı Gib den kontrol eder.

GET/einvoice/Purchase/{UUID}/CheckFromGib
Path parameters
UUID*string (uuid)
Response

Faturayı Gib den kontrol eder.

Body
EnvelopeUUIDnullable string
EnvelopeGibCodenullable string
EnvelopeDescriptionnullable string
AnswerEnvelopeUUIDnullable string
AnswerEnvelopeGibCodenullable string
AnswerEnvelopeDescriptionnullable string
Request
const response = await fetch('/einvoice/Purchase/{UUID}/CheckFromGib', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "EnvelopeUUID": "text",
  "EnvelopeGibCode": "text",
  "EnvelopeDescription": "text",
  "AnswerEnvelopeUUID": "text",
  "AnswerEnvelopeGibCode": "text",
  "AnswerEnvelopeDescription": "text"
}
var client = new RestClient("https://apitest.nilvera.com/einvoice/Purchase/10c46a24-08bc-4cc0-ae3e-fa908a2b77c1/CheckFromGib");
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <API KEY>");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);