Skip to main content

AddAccessLevelGroup

Overview

Adds an existing Access Level Group to an existing User. Returns Success/Error code plus primary key of UserAccessLevelGroup entry made.

Request Information


Method

POST - api/Person/AddAccessLevelGroup

URI Parameters

None.

Body Parameters

AddAccessLevelGroupViewModel

NameDescriptionTypeAdditional information
UserIdRequired: Represents the PK of an existing Userglobally unique identifierNone.
AccessLevelGroupIdRequired: Represents the PK of an existing Access Level Group you wish to add to an existing User.integerNone

JSON

{
"UserId": "0d5471b3-6390-458d-856b-7053024eaeb6",
"AccessLevelGroupId": 2
}

XML

<AddAccessLevelGroupViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BluSKYWebAPI.Controllers">
<AccessLevelGroupId>2</AccessLevelGroupId>
<UserId>0d5471b3-6390-458d-856b-7053024eaeb6</UserId>
</AddAccessLevelGroupViewModel>

Response Information


Resource Description

ResultWithInt

NameDescriptionTypeAdditional information
ResultCodeRepresents the result codeintegerNone.
DescriptionRepresents a description of the result codestringNone.
ValueRepresents the PK value that was created as a result of an addintegerNone.

Response Formats

JSON

{
"ResultCode": 1,
"Description": "sample string 2",
"Value": 3
}

XML

<ResultWithInt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BluSKYWebAPI.Controllers">
`````<Description>``````sample string 2</Description>
`<ResultCode>`1</ResultCode>
`<Value>`3</Value>
</ResultWithInt>