POST api/MobileAPI20/RollbackInstance

流程撤销

Request Information

URI Parameters

None.

Body Parameters

FlowRollbackModel
NameDescriptionTypeAdditional information
instanceID

globally unique identifier

None.

features

Collection of string

None.

Request Formats

application/json, text/json

Sample:
{
  "instanceID": "1293b427-3726-41cf-85b7-d67c219c871d",
  "features": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<FlowRollbackModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JetHR.OpenAPI.Model">
  <features xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </features>
  <instanceID>1293b427-3726-41cf-85b7-d67c219c871d</instanceID>
</FlowRollbackModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'FlowRollbackModel'.

Response Information

Resource Description

流程撤销

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>