DraftOperationResponse
Response shared by the update/send/delete draft endpoints — all three are a single provider
call with the same success/failure shape as Sodium.EmailService.Contracts.Responses.ReplyEmailResponse.
Properties
| Name | Type | Description |
|---|---|---|
| success | boolean | Whether the operation succeeded |
Whether the operation succeeded | ||
| errorMessage | string | Error message if the operation failed |
Error message if the operation failed | ||
| reconnectRequired | boolean | Whether the user needs to reconnect their mailbox |
Whether the user needs to reconnect their mailbox | ||
JSON Example
{
"success": false,
"errorMessage": "string",
"reconnectRequired": false
}