| POST | /notification/send-incomplete-resubmittable-form-email/ |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| IncompleteResubmittabFormCount | form | int? | No | |
| ResponseStatus | form | ResponseStatus | No | |
| Result | form | string | No | |
| Subject | form | string | No | |
| ToAddresses | form | List<EmailAddress> | No | |
| CcAddresses | form | List<EmailAddress> | No | |
| BccAddresses | form | List<EmailAddress> | No | |
| FromAddress | form | EmailAddress | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| DisplayName | form | string | No | |
| Address | form | string | No |
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 /notification/send-incomplete-resubmittable-form-email/ HTTP/1.1
Host: notifications.breastcancertrials.org.au
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
}
HTTP/1.1 200 OK
Content-Type: text/jsv
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
}
}