POST api/Common/SaveMobileSMSCall

Request Information

URI Parameters

None.

Body Parameters

MobileSmsCallLogDTO
NameDescriptionTypeAdditional information
PickupOrderId

integer

None.

PackageId

integer

None.

CategoryId

integer

None.

Text

string

None.

FromMobile

boolean

None.

UserId

integer

None.

DateTime

date

None.

Duration

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "PickupOrderId": 1,
  "PackageId": 1,
  "CategoryId": 1,
  "Text": "sample string 2",
  "FromMobile": true,
  "UserId": 4,
  "DateTime": "2024-07-04T21:55:02.8197138+02:00",
  "Duration": 1.1
}

application/xml, text/xml

Sample:
<MobileSmsCallLogDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MYLERZ.Base.DTO.MobileDTO">
  <CategoryId>1</CategoryId>
  <DateTime>2024-07-04T21:55:02.8197138+02:00</DateTime>
  <Duration>1.1</Duration>
  <FromMobile>true</FromMobile>
  <PackageId>1</PackageId>
  <PickupOrderId>1</PickupOrderId>
  <Text>sample string 2</Text>
  <UserId>4</UserId>
</MobileSmsCallLogDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DescriptiveResponseOfBoolean
NameDescriptionTypeAdditional information
Value

boolean

None.

CoreValue

string

None.

IsErrorState

boolean

None.

ErrorDescription

string

None.

ErrorMetadata

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Value": true,
  "CoreValue": "sample string 2",
  "IsErrorState": true,
  "ErrorDescription": "sample string 4",
  "ErrorMetadata": {}
}

application/xml, text/xml

Sample:
<DescriptiveResponseOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MYLERZ.Base.Entities">
  <CoreValue>sample string 2</CoreValue>
  <ErrorDescription>sample string 4</ErrorDescription>
  <ErrorMetadata />
  <IsErrorState>true</IsErrorState>
  <Value>true</Value>
</DescriptiveResponseOfboolean>