POST api/ChangeProgress/Change

Request Information

URI Parameters

None.

Body Parameters

JobSearchDto
NameDescriptionTypeAdditional information
Id

string

None.

EnterpriseId

integer

None.

UserId

integer

None.

ShopId

integer

None.

ShopIds

Collection of integer

None.

JobBusinessType

JobBusinessType

None.

BusinessJobId

string

None.

IsDeleteCompleteJobs

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "sample string 1",
  "EnterpriseId": 1,
  "UserId": 1,
  "ShopId": 1,
  "ShopIds": [
    1,
    2
  ],
  "JobBusinessType": 1,
  "BusinessJobId": "sample string 2",
  "IsDeleteCompleteJobs": true
}

application/xml, text/xml

Sample:
<JobSearchDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MS.AliExpress.Model.Dto.Jobs">
  <BusinessJobId>sample string 2</BusinessJobId>
  <EnterpriseId>1</EnterpriseId>
  <Id>sample string 1</Id>
  <IsDeleteCompleteJobs>true</IsDeleteCompleteJobs>
  <JobBusinessType>SyncOrder</JobBusinessType>
  <ShopId>1</ShopId>
  <ShopIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </ShopIds>
  <UserId>1</UserId>
</JobSearchDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseResultOfProgressResponseResult
NameDescriptionTypeAdditional information
Status

boolean

None.

ErrorCode

string

None.

ErrorMessage

string

None.

Data

ProgressResponseResult

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "ErrorCode": "sample string 2",
  "ErrorMessage": "sample string 3",
  "Data": {
    "ConnectedClient": [
      "sample string 1",
      "sample string 2"
    ],
    "TotalProgress": 1,
    "CurrentProgress": 1,
    "JobStatus": "None",
    "ReceivingMethod": 1,
    "Message": "sample string 2",
    "Description": {},
    "ShopIds": [
      1,
      2
    ],
    "JobBusinessType": "同步订单",
    "ExtendedObject": {}
  }
}

application/xml, text/xml

Sample:
<ResponseResultOfProgressResponseResulth_PYbGeEm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Willv.Common">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/MS.AliExpress.Model.Progress">
    <d2p1:ConnectedClient xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:string>sample string 1</d3p1:string>
      <d3p1:string>sample string 2</d3p1:string>
    </d2p1:ConnectedClient>
    <d2p1:CurrentProgress>1</d2p1:CurrentProgress>
    <d2p1:Description />
    <d2p1:ExtendedObject />
    <d2p1:JobBusinessType>SyncOrder</d2p1:JobBusinessType>
    <d2p1:JobStatus>None</d2p1:JobStatus>
    <d2p1:Message>sample string 2</d2p1:Message>
    <d2p1:ReceivingMethod>ChangeSyncOrderProcess</d2p1:ReceivingMethod>
    <d2p1:ShopIds xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:int>1</d3p1:int>
      <d3p1:int>2</d3p1:int>
    </d2p1:ShopIds>
    <d2p1:TotalProgress>1</d2p1:TotalProgress>
  </Data>
  <ErrorCode>sample string 2</ErrorCode>
  <ErrorMessage>sample string 3</ErrorMessage>
  <Status>true</Status>
</ResponseResultOfProgressResponseResulth_PYbGeEm>