Ugrás a fő tartalomhoz

Delivery Points

GET 

https://api.kvikk.hu/v1/delivery-points

Retrieve a list of delivery points based on courier and type. The ID parameter is the same as in the courier’s own database, so if you have your own list of delivery points with valid IDs, you can use that to generate shipments on Kvikk.

Request

Responses

OK

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.kvikk.hu/v1/delivery-points");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.kvikk.hu/v1
Parameters
— query
— query
ResponseClear

Click the Send API Request button above and see the response here!