| POST | /notification/send-incomplete-resubmittable-form-email/ |
|---|
import Foundation
import ServiceStack
// @ApiResponse(Description="Unauthorized.", StatusCode=401)
// @ApiResponse(Description="Forbidden.", StatusCode=403)
// @ApiResponse(Description="Bad Request.", StatusCode=400)
// @ApiResponse(Description="Internal Server Error.", StatusCode=500)
public class SendIncompleteResubmittableFormEmail : Codable
{
required public init(){}
}
public class SendIncompleteResubmittableFormEmailResponse : Codable
{
public var incompleteResubmittabFormCount:Int?
public var responseStatus:ResponseStatus
public var result:String
public var subject:String
public var toAddresses:[EmailAddress] = []
public var ccAddresses:[EmailAddress] = []
public var bccAddresses:[EmailAddress] = []
public var fromAddress:EmailAddress
required public init(){}
}
public class EmailAddress : Codable
{
public var displayName:String
public var address:String
required public init(){}
}
Swift SendIncompleteResubmittableFormEmail DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /notification/send-incomplete-resubmittable-form-email/ HTTP/1.1
Host: notifications.breastcancertrials.org.au
Accept: application/json
Content-Type: application/json
Content-Length: length
{}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"incompleteResubmittabFormCount":0,"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"result":"String","subject":"String","toAddresses":[{"displayName":"String","address":"String"}],"ccAddresses":[{"displayName":"String","address":"String"}],"bccAddresses":[{"displayName":"String","address":"String"}],"fromAddress":{"displayName":"String","address":"String"}}