İrsaliyeyi GİB'den Kontrol Eder

İrsaliyeyi Gib den kontrol eder.

GET/edespatch/Sale/{UUID}/CheckFromGib
Path parameters
UUID*string (uuid)
Response

İrsaliyeyi Gib den kontrol eder.

Body
EnvelopeUUIDnullable string
EnvelopeGibCodenullable string
EnvelopeDescriptionnullable string
AnswerEnvelopeUUIDnullable string
AnswerEnvelopeGibCodenullable string
AnswerEnvelopeDescriptionnullable string
Request
const response = await fetch('/edespatch/Sale/{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/edespatch/Sale/64eea613-3c5f-434c-9dfd-c6856a938781/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);