| Requires any of the roles: | Agent, Administrator, Agent, Administrator, Agent, Administrator |
| GET,POST,PUT,DELETE,OPTIONS | /v1/NoticeAdmin/{NoticeId} | ||
|---|---|---|---|
| GET,POST,PUT,DELETE,OPTIONS | /v1/NoticeAdmin/ |
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using CRM.AgencyPlatform.API.Internal;
namespace CRM.AgencyPlatform.API.Internal
{
public partial class Notice
{
public virtual int NoticeId { get; set; }
public virtual DateTime BeginDate { get; set; }
public virtual DateTime ExpireDate { get; set; }
public virtual string NoticeTitle { get; set; }
public virtual string NoticeDescription { get; set; }
public virtual string NoticeFullText { get; set; }
public virtual int OrderIndex { get; set; }
public virtual bool IsActive { get; set; }
public virtual bool IsUrgent { get; set; }
}
public partial class NoticeAdminRequest
{
public virtual DateTime DateAsOf { get; set; }
public virtual int NoticeID { get; set; }
public virtual List<Notice> Notice { get; set; } = [];
}
public partial class NoticeAdminResponse
{
public virtual ResponseStatus ResponseStatus { get; set; }
public virtual List<Notice> Notice { get; set; } = [];
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /v1/NoticeAdmin/{NoticeId} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
DateAsOf: 0001-01-01,
NoticeID: 0,
Notice:
[
{
NoticeId: 0,
BeginDate: 0001-01-01,
ExpireDate: 0001-01-01,
NoticeTitle: String,
NoticeDescription: String,
NoticeFullText: String,
OrderIndex: 0,
IsActive: False,
IsUrgent: False
}
]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
},
Notice:
[
{
NoticeId: 0,
BeginDate: 0001-01-01,
ExpireDate: 0001-01-01,
NoticeTitle: String,
NoticeDescription: String,
NoticeFullText: String,
OrderIndex: 0,
IsActive: False,
IsUrgent: False
}
]
}