İrsaliyeyi GİB'den Kontrol Eder

İrsaliyeyi Gib den kontrol eder.

get
Authorizations
Path parameters
UUIDstring · uuidRequired
Responses
200
İrsaliyeyi Gib den kontrol eder.
application/json
get
GET /edespatch/Sale/{UUID}/CheckFromGib HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
{
  "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);

Last updated