POST {language}/notification/mail

Request Information

URI Parameters

NameDescriptionTypeAdditional information
language

string

Required

Body Parameters

MailNotificationRequest
NameDescriptionTypeAdditional information
Content

string

None.

Subject

string

None.

Receivers

string

None.

Bcc

string

None.

IsHtml

boolean

None.

RequestId

globally unique identifier

None.

Language

string

None.

LanguageLogin

string

None.

AuthToken

string

None.

ClientId

string

None.

PageIndex

integer

None.

PageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Content": "sample string 1",
  "Subject": "sample string 2",
  "Receivers": "sample string 3",
  "Bcc": "sample string 4",
  "IsHtml": true,
  "RequestId": "75bfe25c-9975-4a10-b1dc-fe2e579c46d8",
  "Language": "sample string 7",
  "LanguageLogin": "sample string 8",
  "AuthToken": "sample string 9",
  "ClientId": "sample string 10",
  "PageIndex": 11,
  "PageSize": 12
}

application/xml, text/xml

Sample:
<MailNotificationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Paytime.Infrastructure.WebApi.Models.Requests">
  <AuthToken xmlns="http://schemas.datacontract.org/2004/07/Cadena.Common.WebApi">sample string 9</AuthToken>
  <ClientId xmlns="http://schemas.datacontract.org/2004/07/Cadena.Common.WebApi">sample string 10</ClientId>
  <Language xmlns="http://schemas.datacontract.org/2004/07/Cadena.Common.WebApi">sample string 7</Language>
  <LanguageLogin xmlns="http://schemas.datacontract.org/2004/07/Cadena.Common.WebApi">sample string 8</LanguageLogin>
  <PageIndex xmlns="http://schemas.datacontract.org/2004/07/Cadena.Common.WebApi">11</PageIndex>
  <PageSize xmlns="http://schemas.datacontract.org/2004/07/Cadena.Common.WebApi">12</PageSize>
  <RequestId xmlns="http://schemas.datacontract.org/2004/07/Cadena.Common.WebApi">75bfe25c-9975-4a10-b1dc-fe2e579c46d8</RequestId>
  <Bcc>sample string 4</Bcc>
  <Content>sample string 1</Content>
  <IsHtml>true</IsHtml>
  <Receivers>sample string 3</Receivers>
  <Subject>sample string 2</Subject>
</MailNotificationRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.