-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathexample.php
More file actions
24 lines (19 loc) · 909 Bytes
/
example.php
File metadata and controls
24 lines (19 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
use Ukrpochta\Pochta;
include __DIR__ . '/vendor/autoload.php';
$ukrpochta = new Pochta('API_KEY');
$result = $ukrpochta->createAddress(
array(
'postcode' => '02099',
'region' => 'Полтавська',
'district' => 'Полтавський',
'city' => 'Полтава',
'street' => 'Шевченка',
'houseNumber' => '51',
'apartmentNumber' => '20',
)
);
// print_r($result);
//{"id":123175,"postcode":"02099","region":"Полтавська","district":"Полтавський","city":"Полтава",
//"street":"Шевченка","houseNumber":"51","apartmentNumber":"20","description":null,"countryside":false,
//"detailedInfo":"Україна, 02099, Полтавська, Полтавський, Полтава, Шевченка, 51, 20","country":"UA"}