POST Api/Assignee/ManageBlueprintFields
Request Information
URI Parameters
None.
Body Parameters
BlueprintFields| Name | Description | Type | Additional information |
|---|---|---|---|
| BlueprintId | integer |
None. |
|
| Blueprint | string |
None. |
|
| BlueprintFieldId | integer |
None. |
|
| BlueprintFieldName | string |
None. |
|
| BlueprintFieldsTypes | Collection of BlueprintFieldTypes |
None. |
|
| BlueprintFieldType | string |
None. |
|
| BlueprintFieldTypeId | integer |
None. |
|
| BlueprintFieldValue | Collection of string |
None. |
|
| ErrorId | integer |
None. |
|
| IsActive | boolean |
None. |
|
| DisplayOrder | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"BlueprintId": 1,
"Blueprint": "sample string 2",
"BlueprintFieldId": 3,
"BlueprintFieldName": "sample string 4",
"BlueprintFieldsTypes": [
{
"TypeId": 1,
"Type": "sample string 2"
},
{
"TypeId": 1,
"Type": "sample string 2"
}
],
"BlueprintFieldType": "sample string 5",
"BlueprintFieldTypeId": 6,
"BlueprintFieldValue": [
"sample string 1",
"sample string 2"
],
"ErrorId": 7,
"IsActive": true,
"DisplayOrder": 9
}
application/xml, text/xml
Sample:
<BlueprintFields xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Qorus.TasQ.ClassModels">
<Blueprint>sample string 2</Blueprint>
<BlueprintFieldId>3</BlueprintFieldId>
<BlueprintFieldName>sample string 4</BlueprintFieldName>
<BlueprintFieldType>sample string 5</BlueprintFieldType>
<BlueprintFieldTypeId>6</BlueprintFieldTypeId>
<BlueprintFieldValue xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</BlueprintFieldValue>
<BlueprintFieldsTypes>
<BlueprintFieldTypes>
<Type>sample string 2</Type>
<TypeId>1</TypeId>
</BlueprintFieldTypes>
<BlueprintFieldTypes>
<Type>sample string 2</Type>
<TypeId>1</TypeId>
</BlueprintFieldTypes>
</BlueprintFieldsTypes>
<BlueprintId>1</BlueprintId>
<DisplayOrder>9</DisplayOrder>
<ErrorId>7</ErrorId>
<IsActive>true</IsActive>
</BlueprintFields>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.