GET api/Students/GetStudentEmailDetails?studentId={studentId}&studentEmailId={studentEmailId}&domain={domain}

This method gets the student email details based on the given studentMailId.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
studentId

Studentid of the email to get the details

integer

Required

studentEmailId

StudentEmailId of the email to get the details

integer

Required

domain

The domain name sope/edumind

string

Required

Body Parameters

None.

Response Information

Resource Description

StudentEmailDetail
NameDescriptionTypeAdditional information
FromEmailId

Gets or sets the from email address

string

None.

ToEmailId

Gets or sets the to email address of the email

string

None.

EmailSubject

Gets or sets the subject of the email

string

None.

EmailAttachmentName

Gets or sets the attachments

string

None.

EmailAtachmentURL

Gets or sets the attachment urls

string

None.

EmailContent

Gets or sets the email content

string

None.

CompanyAddress

Gets or sets the signature of the email

string

None.

StudentName

Gets or sets the student name

string

None.

ShowAttachMent

Gets or sets the status to show the attachment or not

boolean

None.

AttachMentDownloadURL

Gets or sets the attachment download urls

string

None.

AttachMentDownloadURL_Mobile

Collection of MailAttachment

None.

MailNotloaded

Gets or sets the mail delivered status message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "FromEmailId": "sample string 1",
  "ToEmailId": "sample string 2",
  "EmailSubject": "sample string 3",
  "EmailAttachmentName": "sample string 4",
  "EmailAtachmentURL": "sample string 5",
  "EmailContent": "sample string 6",
  "CompanyAddress": "sample string 7",
  "StudentName": "sample string 8",
  "ShowAttachMent": true,
  "AttachMentDownloadURL": "sample string 10",
  "AttachMentDownloadURL_Mobile": [
    {
      "FileName": "sample string 1",
      "FileUrl": "sample string 2"
    },
    {
      "FileName": "sample string 1",
      "FileUrl": "sample string 2"
    }
  ],
  "MailNotloaded": "sample string 11"
}