POST api/MobileAPI/SaveBPMFlowInstance

保存流程数据

Request Information

URI Parameters

None.

Body Parameters

BPMFlowInstanceInput
NameDescriptionTypeAdditional information
FlowCategory

string

None.

FlowTemplate_GID

globally unique identifier

None.

FormData

string

None.

Applicant_GID

globally unique identifier

None.

SubmitChannel

string

None.

AttachmentList

string

None.

Request Formats

application/json, text/json

Sample:
{
  "FlowCategory": "sample string 1",
  "FlowTemplate_GID": "f30a03e1-4993-4797-b7cc-f523315ef44f",
  "FormData": "sample string 3",
  "Applicant_GID": "b25fe683-6965-4a67-b7b9-ae703ceb3820",
  "SubmitChannel": "sample string 5",
  "AttachmentList": "sample string 6"
}

application/xml, text/xml

Sample:
<BPMFlowInstanceInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JetHR.OpenAPI.Model">
  <Applicant_GID>b25fe683-6965-4a67-b7b9-ae703ceb3820</Applicant_GID>
  <AttachmentList>sample string 6</AttachmentList>
  <FlowCategory>sample string 1</FlowCategory>
  <FlowTemplate_GID>f30a03e1-4993-4797-b7cc-f523315ef44f</FlowTemplate_GID>
  <FormData>sample string 3</FormData>
  <SubmitChannel>sample string 5</SubmitChannel>
</BPMFlowInstanceInput>

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 'BPMFlowInstanceInput'.

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>