var client = new RestClient("https://apitest.nilvera.com/eproducer/Producers/Export/Xml"); client.Timeout = -1; var request = new RestRequest(Method.POST); request.AddHeader("Authorization", "Bearer <API KEY>"); request.AddHeader("Content-Type", "application/json"); var body = @"["3fa85f64-5717-4562-b3fc-2c963f66afa6"]"; request.AddParameter("application/json", body, ParameterType.RequestBody); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
Last updated 6 months ago
Makbuzları toplu olarak dışarı aktarır.
const response = await fetch('/eproducer/Producers/Export/{fileType}', { method: 'POST', headers: { "Content-Type": "application/json-patch+json" }, body: JSON.stringify([ "123e4567-e89b-12d3-a456-426614174000" ]), }); const data = await response.json();
text