GET request/user/{id}/notification/config
User notifications get
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of UserNotificationConfiguration| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| IsAccess | boolean |
None. |
|
| Name | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"name": "sample string 2",
"isAccess": true
},
{
"id": 1,
"name": "sample string 2",
"isAccess": true
}
]
text/html
Sample:
[{"id":1,"name":"sample string 2","isAccess":true},{"id":1,"name":"sample string 2","isAccess":true}]
application/xml, text/xml
Sample:
<ArrayOfUserNotificationConfiguration xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCSCommercialAPI.Models.Users">
<UserNotificationConfiguration>
<Id>1</Id>
<IsAccess>true</IsAccess>
<Name>sample string 2</Name>
</UserNotificationConfiguration>
<UserNotificationConfiguration>
<Id>1</Id>
<IsAccess>true</IsAccess>
<Name>sample string 2</Name>
</UserNotificationConfiguration>
</ArrayOfUserNotificationConfiguration>