BctNotification

<back to all web services

SendIncompleteResubmittableFormEmail

OpenClinica
Requires Authentication
The following routes are available for this service:
POST/notification/send-incomplete-resubmittable-form-email/
import java.math.*
import java.util.*
import net.servicestack.client.*


@ApiResponse(Description="Unauthorized.", StatusCode=401)
// @ApiResponse(Description="Forbidden.", StatusCode=403)
// @ApiResponse(Description="Bad Request.", StatusCode=400)
// @ApiResponse(Description="Internal Server Error.", StatusCode=500)
open class SendIncompleteResubmittableFormEmail
{
}

open class SendIncompleteResubmittableFormEmailResponse
{
    var incompleteResubmittabFormCount:Int? = null
    var responseStatus:ResponseStatus? = null
    var result:String? = null
    var subject:String? = null
    var toAddresses:ArrayList<EmailAddress> = ArrayList<EmailAddress>()
    var ccAddresses:ArrayList<EmailAddress> = ArrayList<EmailAddress>()
    var bccAddresses:ArrayList<EmailAddress> = ArrayList<EmailAddress>()
    var fromAddress:EmailAddress? = null
}

open class EmailAddress
{
    var displayName:String? = null
    var address:String? = null
}

Kotlin 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

HTTP + JSON

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"}}