POST users/sendCourierTimes

Request Information

URI Parameters

None.

Body Parameters

SendCourierTimesRequest
NameDescriptionTypeAdditional information
SenderName

string

None.

SenderMail

string

None.

RecipientName

string

None.

RecipientMail

string

None.

Subject

string

None.

MessageBody

string

None.

CompanyId

integer

None.

CourierId

integer

None.

Month

string

None.

timeZone

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "timeZone": 1,
  "senderName": "sample string 1",
  "senderMail": "sample string 2",
  "recipientName": "sample string 3",
  "recipientMail": "sample string 4",
  "subject": "sample string 5",
  "messageBody": "sample string 6",
  "companyId": 1,
  "courierId": 1,
  "month": "sample string 7"
}

application/xml, text/xml

Sample:
<SendCourierTimesRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Clickoapp2.Shared.ViewModels">
  <_x003C_CompanyId_x003E_k__BackingField>1</_x003C_CompanyId_x003E_k__BackingField>
  <_x003C_CourierId_x003E_k__BackingField>1</_x003C_CourierId_x003E_k__BackingField>
  <_x003C_Month_x003E_k__BackingField>sample string 7</_x003C_Month_x003E_k__BackingField>
  <timeZone>1</timeZone>
  <_x003C_MessageBody_x003E_k__BackingField>sample string 6</_x003C_MessageBody_x003E_k__BackingField>
  <_x003C_RecipientMail_x003E_k__BackingField>sample string 4</_x003C_RecipientMail_x003E_k__BackingField>
  <_x003C_RecipientName_x003E_k__BackingField>sample string 3</_x003C_RecipientName_x003E_k__BackingField>
  <_x003C_SenderMail_x003E_k__BackingField>sample string 2</_x003C_SenderMail_x003E_k__BackingField>
  <_x003C_SenderName_x003E_k__BackingField>sample string 1</_x003C_SenderName_x003E_k__BackingField>
  <_x003C_Subject_x003E_k__BackingField>sample string 5</_x003C_Subject_x003E_k__BackingField>
</SendCourierTimesRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>