GET api/userauthentication/{userId}/Exceptions
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of UserExceptionsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| UserId | integer |
None. |
|
| ObjectId | integer |
None. |
|
| ObjectIdDesc | string |
None. |
|
| ObjectType | integer |
None. |
|
| ObjectTypeDesc | string |
None. |
|
| ProcessTypeId | integer |
None. |
|
| ProcessTypeDesc | string |
None. |
|
| Direction | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"UserId": 2,
"ObjectId": 3,
"ObjectIdDesc": "sample string 4",
"ObjectType": 5,
"ObjectTypeDesc": "sample string 6",
"ProcessTypeId": 7,
"ProcessTypeDesc": "sample string 8",
"Direction": true
},
{
"id": 1,
"UserId": 2,
"ObjectId": 3,
"ObjectIdDesc": "sample string 4",
"ObjectType": 5,
"ObjectTypeDesc": "sample string 6",
"ProcessTypeId": 7,
"ProcessTypeDesc": "sample string 8",
"Direction": true
}
]
application/xml, text/xml
Sample:
<ArrayOfUserExceptionsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GabineteDigital.Services.Models">
<UserExceptionsModel>
<Direction>true</Direction>
<ObjectId>3</ObjectId>
<ObjectIdDesc>sample string 4</ObjectIdDesc>
<ObjectType>5</ObjectType>
<ObjectTypeDesc>sample string 6</ObjectTypeDesc>
<ProcessTypeDesc>sample string 8</ProcessTypeDesc>
<ProcessTypeId>7</ProcessTypeId>
<UserId>2</UserId>
<id>1</id>
</UserExceptionsModel>
<UserExceptionsModel>
<Direction>true</Direction>
<ObjectId>3</ObjectId>
<ObjectIdDesc>sample string 4</ObjectIdDesc>
<ObjectType>5</ObjectType>
<ObjectTypeDesc>sample string 6</ObjectTypeDesc>
<ProcessTypeDesc>sample string 8</ProcessTypeDesc>
<ProcessTypeId>7</ProcessTypeId>
<UserId>2</UserId>
<id>1</id>
</UserExceptionsModel>
</ArrayOfUserExceptionsModel>