POST api/StandardWorkTemplate/removeTemplatesFromAccountType
remove the templates from account type
Request Information
URI Parameters
None.
Body Parameters
RemoveTemplatesFromAccountTypeBinder| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectId | integer |
None. |
|
| AccountTypeId | integer |
None. |
|
| StandardTemplates | Collection of WorkTemplateIdObject |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProjectId": 1,
"AccountTypeId": 2,
"StandardTemplates": [
{
"ProjectId": 1,
"TemplateId": 2
},
{
"ProjectId": 1,
"TemplateId": 2
}
]
}
application/xml, text/xml
Sample:
<RemoveTemplatesFromAccountTypeBinder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Binding">
<AccountTypeId>2</AccountTypeId>
<ProjectId>1</ProjectId>
<StandardTemplates>
<WorkTemplateIdObject>
<ProjectId>1</ProjectId>
<TemplateId>2</TemplateId>
</WorkTemplateIdObject>
<WorkTemplateIdObject>
<ProjectId>1</ProjectId>
<TemplateId>2</TemplateId>
</WorkTemplateIdObject>
</StandardTemplates>
</RemoveTemplatesFromAccountTypeBinder>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
remove the templates from account type
ApiReturn| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Error | ErrorInfo |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Error": {
"ErrorCode": 1,
"ErrorMessage": "sample string 1"
}
}
application/xml, text/xml
Sample:
<ApiReturn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common">
<Error>
<ErrorCode>1</ErrorCode>
<ErrorMessage>sample string 1</ErrorMessage>
</Error>
<Success>true</Success>
</ApiReturn>