Trendsic Platform Service

<back to all web services

UserNotificationsRequest

Requires Authentication
Requires any of the roles:Worker, Agent, Administrator, Agent, Administrator
The following routes are available for this service:
GET,OPTIONS/v1/UserNotifications/{AgentId}
DELETE,OPTIONS/v1/UserNotifications/{NotificationId}
namespace CRM.AgencyPlatform.API.Internal

open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type UserNotification() = 
        member val NotificationId:Int32 = new Int32() with get,set
        member val AgentId:Int32 = new Int32() with get,set
        member val Description:String = null with get,set
        member val From:String = null with get,set
        member val CreatedDate:DateTime = new DateTime() with get,set
        member val Type:String = null with get,set
        member val URL:String = null with get,set
        member val RefId:String = null with get,set
        member val IsDeleted:Boolean = new Boolean() with get,set

    [<AllowNullLiteral>]
    type UserNotificationsResponse() = 
        member val ResponseStatus:ResponseStatus = null with get,set
        member val Notifications:ResizeArray<UserNotification> = new ResizeArray<UserNotification>() with get,set
        member val Deleted:Boolean = new Boolean() with get,set

    [<AllowNullLiteral>]
    type UserNotificationsRequest() = 
        member val AgentId:Int32 = new Int32() with get,set
        member val NotificationId:Int32 = new Int32() with get,set
        member val ShowDeleted:Boolean = new Boolean() with get,set

F# UserNotificationsRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other

HTTP + OTHER

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /v1/UserNotifications/{AgentId} HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"Notifications":[{"NotificationId":0,"AgentId":0,"Description":"String","From":"String","CreatedDate":"0001-01-01T00:00:00.0000000","Type":"String","URL":"String","RefId":"String","IsDeleted":false}],"Deleted":false}