İ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/Purchase/{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/Purchase/0050568C-C008-1EDD-A0A4-192134665EE4/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