Name |
Type |
Description |
Notes |
pki_address_id |
Integer |
The unique ID of the Address |
[optional] |
fki_addresstype_id |
Integer |
The unique ID of the Addresstype. Valid values: |
Value |
s_address_civic |
String |
The Civic number. |
|
s_address_street |
String |
The Street Name |
|
s_address_suite |
String |
The Suite or appartment number |
[optional] |
s_address_city |
String |
The City name |
|
fki_province_id |
Integer |
The unique ID of the Province. Here are some common values (Complete list must be retrieved from API): |
Value |
fki_country_id |
Integer |
The unique ID of the Country. Here are some common values (Complete list must be retrieved from API): |
Value |
s_address_zip |
String |
The Postal/Zip Code The value must be entered without spaces |
|
f_address_longitude |
String |
The Longitude of the Address |
[optional] |
f_address_latitude |
String |
The Latitude of the Address |
[optional] |
require 'Ezmaxapi'
instance = EzmaxApi::AddressRequest.new(
pki_address_id: 142,
fki_addresstype_id: 1,
s_address_civic: 2540,
s_address_street: Daniel-Johnson Blvd.,
s_address_suite: 610,
s_address_city: Laval,
fki_province_id: 11,
fki_country_id: 1,
s_address_zip: H7T2S3,
f_address_longitude: 73.5674,
f_address_latitude: 45.5019
)