ENVIRONMENT : Test

GET {culture}/api/ExDropOffLocation

Returns list of drop off locations

Request Information

URI Parameters

Name Description Type Additional information
culture

string

None.

Body Parameters

None.

Response Information

Resource Description

Returns list of drop off locations

Collection of ExDropOffLocationListModel
Name Description Type Additional information
Address

Street

string

None.

AddressHouseNumber

House number

string

None.

Code

Alphanumeric code of dropOff location

string

None.

CountryCode

Two-letter country code of dropOff location, as defined in ISO 3166-1

string

None.

DropOffInstructions

Instructions about dropoff location

string

None.

Email

Office e-mail address

string

None.

Fax

Office telefax number

string

None.

Id

DropOff location identifier

integer

None.

IsShuttle

Office has shuttle service

boolean

None.

Latitude

Geographical coordinates latitude

decimal number

None.

Longitude

Geographical coordinates longitude

decimal number

None.

Name

Name of dropOff location

string

None.

PostalCode

Postal code

string

None.

Remark

Remark

string

None.

Tel

Office telephone number

string

None.

Town

Town

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "Ljubljana Airport",
    "Code": "LJ",
    "CountryCode": "SI",
    "PostalCode": "10000",
    "Town": "Ljubljana",
    "Address": "Dunajska cesta",
    "AddressHouseNumber": "269",
    "Tel": "+385 1 6111113",
    "Fax": "+385 1 6111114",
    "Email": "somelocation@somecompany.com",
    "Latitude": -34.397255,
    "Longitude": 150.644823,
    "Remark": "Some remark",
    "DropOffInstructions": "Near...",
    "IsShuttle": true
  },
  {
    "Id": 1,
    "Name": "Ljubljana Airport",
    "Code": "LJ",
    "CountryCode": "SI",
    "PostalCode": "10000",
    "Town": "Ljubljana",
    "Address": "Dunajska cesta",
    "AddressHouseNumber": "269",
    "Tel": "+385 1 6111113",
    "Fax": "+385 1 6111114",
    "Email": "somelocation@somecompany.com",
    "Latitude": -34.397255,
    "Longitude": 150.644823,
    "Remark": "Some remark",
    "DropOffInstructions": "Near...",
    "IsShuttle": true
  }
]