| Requires any of the roles: | Client, Admin, Partner |
| POST | /action_documents |
|---|
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports digitaluapi.ServiceModel
Namespace Global
Namespace digitaluapi.ServiceModel
<DataContract>
Public Partial Class ActionDocumentsAdd
<DataMember(Order:=2)>
<Validate(Validator:="NotNull")>
Public Overridable Property TenantsId As Integer
<DataMember(Order:=3)>
<Validate(Validator:="NotNull")>
Public Overridable Property ActionsId As Long
<DataMember(Order:=4)>
<Validate(Validator:="NotNull")>
Public Overridable Property DocumentUrl As String
End Class
Public Partial Class ActionDocumentsAddResponse
<DataMember(Order:=2)>
Public Overridable Property TenantsId As Integer
<DataMember(Order:=3)>
Public Overridable Property ActionsId As Long
<DataMember(Order:=4)>
Public Overridable Property DocumentUrl As String
<DataMember(Order:=6)>
Public Overridable Property ResponseStatus As ResponseStatus
End Class
End Namespace
End Namespace
VB.NET ActionDocumentsAdd DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /action_documents HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"TenantsId":0,"ActionsId":0,"DocumentUrl":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"TenantsId":0,"ActionsId":0,"DocumentUrl":"String","ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}