POST api/appapiaccountuser/update

Request Information

URI Parameters

None.

Body Parameters

AppApiAccountUser
NameDescriptionTypeAdditional information
Id

integer

Required

RowGuid

globally unique identifier

Required

AppApiAccountId

integer

Required

UsrUserId

integer

Required

Enabled

integer

Required

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "RowGuid": "28f72726-b5db-432f-8687-4b8cdb8d0f61",
  "AppApiAccountId": 3,
  "UsrUserId": 4,
  "Enabled": 5
}

application/xml, text/xml

Sample:
<AppApiAccountUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
  <AppApiAccountId>3</AppApiAccountId>
  <Enabled>5</Enabled>
  <Id>1</Id>
  <RowGuid>28f72726-b5db-432f-8687-4b8cdb8d0f61</RowGuid>
  <UsrUserId>4</UsrUserId>
</AppApiAccountUser>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AppApiAccountUserDisplay
NameDescriptionTypeAdditional information
AppApiAccountIdDisplay

string

None.

UsrUserIdDisplay

string

None.

DisplayField

string

None.

Id

integer

Required

RowGuid

globally unique identifier

Required

AppApiAccountId

integer

Required

UsrUserId

integer

Required

Enabled

integer

Required

Response Formats

application/json, text/json

Sample:
{
  "AppApiAccountIdDisplay": "sample string 1",
  "UsrUserIdDisplay": "sample string 2",
  "DisplayField": "sample string 3",
  "Id": 4,
  "RowGuid": "e99aadc6-f4af-466d-8a17-fd8f7d268071",
  "AppApiAccountId": 6,
  "UsrUserId": 7,
  "Enabled": 8
}

application/xml, text/xml

Sample:
<AppApiAccountUserDisplay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
  <AppApiAccountId>6</AppApiAccountId>
  <Enabled>8</Enabled>
  <Id>4</Id>
  <RowGuid>e99aadc6-f4af-466d-8a17-fd8f7d268071</RowGuid>
  <UsrUserId>7</UsrUserId>
  <AppApiAccountIdDisplay>sample string 1</AppApiAccountIdDisplay>
  <DisplayField>sample string 3</DisplayField>
  <UsrUserIdDisplay>sample string 2</UsrUserIdDisplay>
</AppApiAccountUserDisplay>