-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfindParcelShopLocations.php
70 lines (70 loc) · 2.86 KB
/
findParcelShopLocations.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
return array(
'findParcelShopLocations' =>
array(
'httpMethod' => 'GET',
'uri' => '/parcel-shop-locations/{countryCode}',
'responseModel' => 'getResponse',
'parameters' =>
array(
'countryCode' =>
array(
'type' => 'string',
'required' => true,
'location' => 'uri',
),
'limit' =>
array(
'description' => 'The maximum number of results returned in the response',
'type' => 'integer',
'required' => false,
'location' => 'query',
'format' => 'int32',
),
'q' =>
array(
'description' => 'Free format location description',
'type' => 'string',
'required' => false,
'location' => 'query',
),
'street' =>
array(
'description' => 'The street name',
'type' => 'string',
'required' => false,
'location' => 'query',
),
'zipCode' =>
array(
'description' => 'The postal code',
'type' => 'string',
'required' => false,
'location' => 'query',
),
'city' =>
array(
'description' => 'The city',
'type' => 'string',
'required' => false,
'location' => 'query',
),
'houseNumber' =>
array(
'description' => 'The housenumber',
'type' => 'string',
'required' => false,
'location' => 'query',
),
'showUnavailable' =>
array(
'description' => 'Show parcel shops that are currently unavailable, e.g. due to holidays',
'type' => 'string',
'required' => false,
'default' => 'false',
'location' => 'query',
),
),
'summary' => 'Find the nearest parcel shop location',
),
);