POST api/UserManagement/UpdateAgentDashboarGraphs

update graph preference for the user

Request Information

URI Parameters

None.

Body Parameters

selectedGraphRequest
NameDescriptionTypeAdditional information
AgentId

integer

None.

Graph_ID1

integer

None.

Graph_ID2

integer

None.

Graph_ID3

integer

None.

IsActive

boolean

None.

CreatedBy

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AgentId": 1,
  "Graph_ID1": 2,
  "Graph_ID2": 3,
  "Graph_ID3": 4,
  "IsActive": true,
  "CreatedBy": "sample string 6"
}

application/xml, text/xml

Sample:
<selectedGraphRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBG.AS.AgentPortal.Data.Models.Dashboard">
  <AgentId>1</AgentId>
  <CreatedBy>sample string 6</CreatedBy>
  <Graph_ID1>2</Graph_ID1>
  <Graph_ID2>3</Graph_ID2>
  <Graph_ID3>4</Graph_ID3>
  <IsActive>true</IsActive>
</selectedGraphRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>