İrsaliyeye Ait ETTN Numarası İle Zarf Bilgilerini Getirir

İrsaliyeye ait ETTN numarası ile Zarf bilgilerini getirir.

GET/edespatch/Purchase/{UUID}/EnvelopeInfo
Path parameters
UUID*string (uuid)
Response

İrsaliyeye ait ETTN numarası ile Zarf bilgilerini getirir.

Body
GIBCodenullable string
GIBDescriptionnullable string
EnvelopeUUIDnullable string
Request
const response = await fetch('/edespatch/Purchase/{UUID}/EnvelopeInfo', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "GIBCode": "text",
  "GIBDescription": "text",
  "EnvelopeUUID": "text"
}
var options = new RestClientOptions("https://apitest.nilvera.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/edespatch/Purchase/d1fdf61e-0ab5-433d-9b19-de09425b1e46/EnvelopeInfo", Method.Get);
request.AddHeader("Authorization", "APIKEY");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);

Last updated