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