PUT api/Manager?AuthenticationGUID={AuthenticationGUID}&ManagerID={ManagerID}

Updates locations associated with a Manager ID based on a list of Location IDs. Returns a "SUCCESS" on successful update, or Error information as a string

Request Information

Parameters

NameDescriptionAdditional information
AuthenticationGUID
The Authentication GUID provided to you by your Account Manager

Define this parameter in the request URI.

ManagerID
The EHX Manager ID

Define this parameter in the request URI.

managerLocationUpdate
Minimum requirements EHX Manager ID and List of integer for each location you wish to assign

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
[
  1,
  2,
  3
]

application/xml, text/xml

Sample:
<ArrayOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <int>1</int>
  <int>2</int>
  <int>3</int>
</ArrayOfint>

Response Information

Response body formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>