POST api/SaveWOrkflowProcessTypes

Request Information

URI Parameters

None.

Body Parameters

ADMWorkflowProcessType
NameDescriptionTypeAdditional information
WorkflowProcessTypeId

integer

None.

ProcessName

string

None.

ProcessDesc

string

None.

ProcessShapeJson

string

None.

CreatedBy

integer

None.

CreatedDate

date

None.

ModifiedBy

integer

None.

ModifiedDate

date

None.

RowStatus

string

None.

Request Formats

application/json, text/json

Sample:
{
  "WorkflowProcessTypeId": 1,
  "ProcessName": "sample string 2",
  "ProcessDesc": "sample string 3",
  "ProcessShapeJson": "sample string 4",
  "CreatedBy": 1,
  "CreatedDate": "2025-05-31T13:14:47.6078559-04:00",
  "ModifiedBy": 1,
  "ModifiedDate": "2025-05-31T13:14:47.6078559-04:00",
  "RowStatus": "sample string 5"
}

application/xml, text/xml

Sample:
<ADMWorkflowProcessType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Goaa.iPro.Data.Admin.CustomClasses">
  <CreatedBy>1</CreatedBy>
  <CreatedDate>2025-05-31T13:14:47.6078559-04:00</CreatedDate>
  <ModifiedBy>1</ModifiedBy>
  <ModifiedDate>2025-05-31T13:14:47.6078559-04:00</ModifiedDate>
  <ProcessDesc>sample string 3</ProcessDesc>
  <ProcessName>sample string 2</ProcessName>
  <ProcessShapeJson>sample string 4</ProcessShapeJson>
  <RowStatus>sample string 5</RowStatus>
  <WorkflowProcessTypeId>1</WorkflowProcessTypeId>
</ADMWorkflowProcessType>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

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