POST api/userauthentication/Exceptions
Request Information
URI Parameters
None.
Body Parameters
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. |
Request 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
}
application/xml, text/xml
Sample:
<UserExceptionsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GabineteDigital.Services.Models"> <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>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse 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>