REST API - View a location
GET /locations/{location_id}
- This method allows information about a specified location to be obtained.
example /locations/7
Notes
See Service Manager REST API Conventions
- If successful, an HTTP status code 200 is returned.
- A URL link (HREF) to the resource is provided.
- All fields are provided, including e_field_name and available_field_x, except for certain sensitive fields reserved for EasyVista.
List of parameters / fields
Mandatory parameters
You must use the parameter below in the URL.
Parameter | Type | Description / Example |
---|---|---|
location_id | integer | location identifier |
Optional parameters
You can use the parameters detailed below in the HTTP request string.
Minimum version | Parameter | Type | Description / Example | ||
---|---|---|---|---|---|
fields | string | Select fields to display.
|
|||
Oxygen 1.7 - Build 2018.1.131.0 | formatDate | string | Format display of Date fields in the HTTP request result. ![]()
|
Optional fields
You can use all the fields from the AM_LOCATION table in the body of the HTTP request except those mentioned below.
NotAuthorizedOptionalFields_Location
- label_color ; label_font ; label_size
- property_color ; property_font ; property_size
- date_format_id
- xpos ; ypos ; zpos
- lft ; rgt ; level
- path_to_compute
HTTP status codes for the method
StatusHeader
Note: A Timeout error code will be returned if the server does not respond to the REST Web service request within a given time (by default 60 seconds).
Code | Error | Description |
---|
Status200
200 | OK (Success) | Request processed successfully. |
Status401
401 | Unauthorized | Authentication process for accessing the resource is incorrect: Login/Password incorrect, Invalid session, Incorrect Service Manager account.
example { "error": "Invalid Login / Password" } |
Status404
404 | Not Found | Resource not found: Incorrect URI, Missing resource, Incorrect communication with the server, rfc_number not found.
example { "error": "Resource not found" } |
Example
Result with a status code 200 returned
"HREF": "http://{your_server}/api/v1/{your_account}/locations/7",
"AVAILABLE_FIELD_1": "",
"AVAILABLE_FIELD_2": "",
"AVAILABLE_FIELD_3": "",
"AVAILABLE_FIELD_4": "",
"AVAILABLE_FIELD_5": "",
"AVAILABLE_FIELD_6": "",
"CITY": "",
"COMMENT_LOCATION": {
"HREF": "http://{your_server}/api/v1/{your_account}/locations/7/"
},
"COUNTRY_ID": "1",
"DISCOVERY_NAME": "",
"E_CAPACITY": "",
"E_IS_MEETING_ROOM": "",
"E_WIFI_LOGIN": "",
"END_DATE": "",
"FAX": "",
"G_MAP_LAT": "37.09024",
"G_MAP_LNG": "-95.712891",
"IS_DELIVERY_ADDRESS": "0",
"LAST_INTEGRATION": "2015-02-26",
"LAST_UPDATE": "2017-03-21",
"LEVEL": "3",
"LOCATION_CODE": "",
"LOCATION_EN": "USA",
"LOCATION_FR": "USA",
"LOCATION_GE": "USA",
"LOCATION_PATH": "North America/USA",
"LOCATION_ID": "7",
"LOCATION_IT": "USA",
"LOCATION_L1": "",
"LOCATION_L2": "",
"LOCATION_L3": "",
"LOCATION_L4": "",
"LOCATION_L5": "",
"LOCATION_L6": "",
"LOCATION_PO": "USA",
"LOCATION_SP": "USA",
"MANAGER_ID": "",
"PARENT_LOCATION_PATH": "",
"PARENT_LOCATION_ID": "6",
"PHONE": "",
"REGION_ZONE_ID": "",
"SLA_ID": "",
"START_DATE": "",
"STATE_ID": "",
"STATUS_ID": "",
"STREET_ADDRESS_1": "",
"STREET_ADDRESS_2": "",
"TIME_ZONE_ID": "14",
"URL_MAP": "/public/MapLib/Countries/USA.jpg",
"ZIP_CODE": ""
}
ConventionsAPI
REST API Conventions
Convention | Meaning | |
---|---|---|
Orange | Parameters used in an HTTP request string which do not correspond to Service Manager database fields.
example Method View a list of assets https://{your_server}/api/v1/{your_account}/assets?max_rows=3&fields=asset_tag |
|
Black and Bold | Parameters used in the URL of an HTTP request which correspond to Service Manager database fields.
example Method View an asset https://{your_server}/api/v1/{your_account}/assets/{asset_id} |
|
Green | Parameters used in the body of an HTTP request which represent JSON object names corresponding to Service Manager database fields; they allow the value of a database field to be assigned or modified.
example Method Close an incident/request { "closed": { "end_date": "11/20/2016 12:12:12", } } |
|
Parameters used in the body of an HTTP request which represent JSON object names not corresponding to Service Manager database fields.
example Method Reopen an incident/request { "restarted": { "comment": "string (required)" } } |