POST DeliveryRequest/SaveSchedule

Request Information

URI Parameters

None.

Body Parameters

DeliveryRequestScheduleParams
NameDescriptionTypeAdditional information
RequestID

integer

None.

ScheduledTime

date

None.

Sort

integer

None.

UserID

integer

None.

UserName

string

None.

RequestSorts

Dictionary of integer [key] and integer [value]

None.

Request Formats

application/json, text/json

Sample:
{
  "RequestID": 1,
  "ScheduledTime": "2025-06-25T01:17:53.5801603+08:00",
  "Sort": 2,
  "UserID": 3,
  "UserName": "sample string 4",
  "RequestSorts": {
    "1": 2,
    "3": 4
  }
}

application/xml, text/xml

Sample:
<DeliveryRequestScheduleParams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MKY.ERP.RG.WebApis.Models">
  <RequestID>1</RequestID>
  <RequestSorts xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfintint>
      <d2p1:Key>1</d2p1:Key>
      <d2p1:Value>2</d2p1:Value>
    </d2p1:KeyValueOfintint>
    <d2p1:KeyValueOfintint>
      <d2p1:Key>3</d2p1:Key>
      <d2p1:Value>4</d2p1:Value>
    </d2p1:KeyValueOfintint>
  </RequestSorts>
  <ScheduledTime>2025-06-25T01:17:53.5801603+08:00</ScheduledTime>
  <Sort>2</Sort>
  <UserID>3</UserID>
  <UserName>sample string 4</UserName>
</DeliveryRequestScheduleParams>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BaseResponse
NameDescriptionTypeAdditional information
resultCode

string

None.

resultMsg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "resultCode": "sample string 1",
  "resultMsg": "sample string 2"
}

application/xml, text/xml

Sample:
<BaseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MKY.ERP.RG.WebApis.Models">
  <resultCode>sample string 1</resultCode>
  <resultMsg>sample string 2</resultMsg>
</BaseResponse>