POST api/Register/Register

Request Information

URI Parameters

None.

Body Parameters

RegisterJobData
NameDescriptionTypeAdditional information
JobServiceType

string

None.

JobServiceMethod

string

None.

Params

Collection of RegisterJobDataParam

None.

HangfireDbKey

string

None.

Request Formats

application/json, text/json

Sample:
{
  "JobServiceType": "sample string 1",
  "JobServiceMethod": "sample string 2",
  "Params": [
    {
      "Type": "sample string 1",
      "JsonValue": "sample string 2"
    },
    {
      "Type": "sample string 1",
      "JsonValue": "sample string 2"
    }
  ],
  "HangfireDbKey": "sample string 3"
}

application/xml, text/xml

Sample:
<RegisterJobData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MS.AliExpress.Model.RegisterModels">
  <HangfireDbKey>sample string 3</HangfireDbKey>
  <JobServiceMethod>sample string 2</JobServiceMethod>
  <JobServiceType>sample string 1</JobServiceType>
  <Params>
    <RegisterJobDataParam>
      <JsonValue>sample string 2</JsonValue>
      <Type>sample string 1</Type>
    </RegisterJobDataParam>
    <RegisterJobDataParam>
      <JsonValue>sample string 2</JsonValue>
      <Type>sample string 1</Type>
    </RegisterJobDataParam>
  </Params>
</RegisterJobData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseResultOfBoolean
NameDescriptionTypeAdditional information
Status

boolean

None.

ErrorCode

string

None.

ErrorMessage

string

None.

Data

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "ErrorCode": "sample string 2",
  "ErrorMessage": "sample string 3",
  "Data": true
}

application/xml, text/xml

Sample:
<ResponseResultOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MS.AliExpress.Api.Models">
  <Data>true</Data>
  <ErrorCode>sample string 2</ErrorCode>
  <ErrorMessage>sample string 3</ErrorMessage>
  <Status>true</Status>
</ResponseResultOfboolean>