using RestSharp;
var options = new RestClientOptions("http://localhost:56350/api/v1/Agents/Document/SaveSuggestedDocumentEntity");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddJsonBody("{\n \"SuggestedDocumentId\": 123,\n \"Name\": \"<string>\",\n \"Tooltip\": \"<string>\",\n \"Rank\": 123,\n \"DoctmplId\": 123,\n \"Header\": \"<string>\",\n \"OurRef\": \"<string>\",\n \"Deleted\": true,\n \"DocTmpl\": {\n \"DocumentTemplateId\": 123,\n \"Name\": \"<string>\",\n \"Tooltip\": \"<string>\",\n \"SaveInDb\": 123,\n \"Filename\": \"<string>\",\n \"DefaultOref\": \"<string>\",\n \"Deleted\": 123,\n \"AutoeventId\": 123,\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n },\n \"ProjectTypeStatusLink\": {\n \"ProjectTypeStatusLinkId\": 123,\n \"ProjTypeId\": 123,\n \"ProjTypeName\": \"<string>\",\n \"ProjTypeTooltip\": \"<string>\",\n \"ProjStatusId\": 123,\n \"ProjStatusName\": \"<string>\",\n \"ProjStatusTooltip\": \"<string>\",\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n },\n \"SaleTypeStageLink\": {\n \"SaleTypeStageLinkId\": 123,\n \"SaleTypeId\": 123,\n \"SaleTypeName\": \"<string>\",\n \"SaleTypeTooltip\": \"<string>\",\n \"ProbId\": 123,\n \"ProbName\": \"<string>\",\n \"ProbTooltip\": \"<string>\",\n \"Probability\": 123,\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n },\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
SuggestedDocumentId: 123,
Name: '<string>',
Tooltip: '<string>',
Rank: 123,
DoctmplId: 123,
Header: '<string>',
OurRef: '<string>',
Deleted: true,
DocTmpl: {
DocumentTemplateId: 123,
Name: '<string>',
Tooltip: '<string>',
SaveInDb: 123,
Filename: '<string>',
DefaultOref: '<string>',
Deleted: 123,
AutoeventId: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
ProjectTypeStatusLink: {
ProjectTypeStatusLinkId: 123,
ProjTypeId: 123,
ProjTypeName: '<string>',
ProjTypeTooltip: '<string>',
ProjStatusId: 123,
ProjStatusName: '<string>',
ProjStatusTooltip: '<string>',
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
SaleTypeStageLink: {
SaleTypeStageLinkId: 123,
SaleTypeId: 123,
SaleTypeName: '<string>',
SaleTypeTooltip: '<string>',
ProbId: 123,
ProbName: '<string>',
ProbTooltip: '<string>',
Probability: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
})
};
fetch('http://localhost:56350/api/v1/Agents/Document/SaveSuggestedDocumentEntity', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "56350",
CURLOPT_URL => "http://localhost:56350/api/v1/Agents/Document/SaveSuggestedDocumentEntity",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'SuggestedDocumentId' => 123,
'Name' => '<string>',
'Tooltip' => '<string>',
'Rank' => 123,
'DoctmplId' => 123,
'Header' => '<string>',
'OurRef' => '<string>',
'Deleted' => true,
'DocTmpl' => [
'DocumentTemplateId' => 123,
'Name' => '<string>',
'Tooltip' => '<string>',
'SaveInDb' => 123,
'Filename' => '<string>',
'DefaultOref' => '<string>',
'Deleted' => 123,
'AutoeventId' => 123,
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
],
'ProjectTypeStatusLink' => [
'ProjectTypeStatusLinkId' => 123,
'ProjTypeId' => 123,
'ProjTypeName' => '<string>',
'ProjTypeTooltip' => '<string>',
'ProjStatusId' => 123,
'ProjStatusName' => '<string>',
'ProjStatusTooltip' => '<string>',
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
],
'SaleTypeStageLink' => [
'SaleTypeStageLinkId' => 123,
'SaleTypeId' => 123,
'SaleTypeName' => '<string>',
'SaleTypeTooltip' => '<string>',
'ProbId' => 123,
'ProbName' => '<string>',
'ProbTooltip' => '<string>',
'Probability' => 123,
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
],
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}import requests
url = "http://localhost:56350/api/v1/Agents/Document/SaveSuggestedDocumentEntity"
payload = {
"SuggestedDocumentId": 123,
"Name": "<string>",
"Tooltip": "<string>",
"Rank": 123,
"DoctmplId": 123,
"Header": "<string>",
"OurRef": "<string>",
"Deleted": True,
"DocTmpl": {
"DocumentTemplateId": 123,
"Name": "<string>",
"Tooltip": "<string>",
"SaveInDb": 123,
"Filename": "<string>",
"DefaultOref": "<string>",
"Deleted": 123,
"AutoeventId": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"ProjectTypeStatusLink": {
"ProjectTypeStatusLinkId": 123,
"ProjTypeId": 123,
"ProjTypeName": "<string>",
"ProjTypeTooltip": "<string>",
"ProjStatusId": 123,
"ProjStatusName": "<string>",
"ProjStatusTooltip": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"SaleTypeStageLink": {
"SaleTypeStageLinkId": 123,
"SaleTypeId": 123,
"SaleTypeName": "<string>",
"SaleTypeTooltip": "<string>",
"ProbId": 123,
"ProbName": "<string>",
"ProbTooltip": "<string>",
"Probability": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
SuggestedDocumentId: 123,
Name: '<string>',
Tooltip: '<string>',
Rank: 123,
DoctmplId: 123,
Header: '<string>',
OurRef: '<string>',
Deleted: true,
DocTmpl: {
DocumentTemplateId: 123,
Name: '<string>',
Tooltip: '<string>',
SaveInDb: 123,
Filename: '<string>',
DefaultOref: '<string>',
Deleted: 123,
AutoeventId: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
ProjectTypeStatusLink: {
ProjectTypeStatusLinkId: 123,
ProjTypeId: 123,
ProjTypeName: '<string>',
ProjTypeTooltip: '<string>',
ProjStatusId: 123,
ProjStatusName: '<string>',
ProjStatusTooltip: '<string>',
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
SaleTypeStageLink: {
SaleTypeStageLinkId: 123,
SaleTypeId: 123,
SaleTypeName: '<string>',
SaleTypeTooltip: '<string>',
ProbId: 123,
ProbName: '<string>',
ProbTooltip: '<string>',
Probability: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
})
};
fetch('http://localhost:56350/api/v1/Agents/Document/SaveSuggestedDocumentEntity', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"SuggestedDocumentId": 123,
"Name": "<string>",
"Tooltip": "<string>",
"Rank": 123,
"DoctmplId": 123,
"Header": "<string>",
"OurRef": "<string>",
"Deleted": true,
"DocTmpl": {
"DocumentTemplateId": 123,
"Name": "<string>",
"Tooltip": "<string>",
"SaveInDb": 123,
"Filename": "<string>",
"DefaultOref": "<string>",
"RecordType": "Unknown",
"Deleted": 123,
"Direction": "Unknown",
"AutoeventId": 123,
"QuoteDocType": "None",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"ProjectTypeStatusLink": {
"ProjectTypeStatusLinkId": 123,
"ProjTypeId": 123,
"ProjTypeName": "<string>",
"ProjTypeTooltip": "<string>",
"ProjStatusId": 123,
"ProjStatusName": "<string>",
"ProjStatusTooltip": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"SaleTypeStageLink": {
"SaleTypeStageLinkId": 123,
"SaleTypeId": 123,
"SaleTypeName": "<string>",
"SaleTypeTooltip": "<string>",
"ProbId": 123,
"ProbName": "<string>",
"ProbTooltip": "<string>",
"Probability": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}Save Suggested Document Entity
Updates the existing SuggestedDocumentEntity or creates a new SuggestedDocumentEntity if the id parameter is 0.
NsApiSlow threshold: 2000 ms.
using RestSharp;
var options = new RestClientOptions("http://localhost:56350/api/v1/Agents/Document/SaveSuggestedDocumentEntity");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddJsonBody("{\n \"SuggestedDocumentId\": 123,\n \"Name\": \"<string>\",\n \"Tooltip\": \"<string>\",\n \"Rank\": 123,\n \"DoctmplId\": 123,\n \"Header\": \"<string>\",\n \"OurRef\": \"<string>\",\n \"Deleted\": true,\n \"DocTmpl\": {\n \"DocumentTemplateId\": 123,\n \"Name\": \"<string>\",\n \"Tooltip\": \"<string>\",\n \"SaveInDb\": 123,\n \"Filename\": \"<string>\",\n \"DefaultOref\": \"<string>\",\n \"Deleted\": 123,\n \"AutoeventId\": 123,\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n },\n \"ProjectTypeStatusLink\": {\n \"ProjectTypeStatusLinkId\": 123,\n \"ProjTypeId\": 123,\n \"ProjTypeName\": \"<string>\",\n \"ProjTypeTooltip\": \"<string>\",\n \"ProjStatusId\": 123,\n \"ProjStatusName\": \"<string>\",\n \"ProjStatusTooltip\": \"<string>\",\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n },\n \"SaleTypeStageLink\": {\n \"SaleTypeStageLinkId\": 123,\n \"SaleTypeId\": 123,\n \"SaleTypeName\": \"<string>\",\n \"SaleTypeTooltip\": \"<string>\",\n \"ProbId\": 123,\n \"ProbName\": \"<string>\",\n \"ProbTooltip\": \"<string>\",\n \"Probability\": 123,\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n },\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
SuggestedDocumentId: 123,
Name: '<string>',
Tooltip: '<string>',
Rank: 123,
DoctmplId: 123,
Header: '<string>',
OurRef: '<string>',
Deleted: true,
DocTmpl: {
DocumentTemplateId: 123,
Name: '<string>',
Tooltip: '<string>',
SaveInDb: 123,
Filename: '<string>',
DefaultOref: '<string>',
Deleted: 123,
AutoeventId: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
ProjectTypeStatusLink: {
ProjectTypeStatusLinkId: 123,
ProjTypeId: 123,
ProjTypeName: '<string>',
ProjTypeTooltip: '<string>',
ProjStatusId: 123,
ProjStatusName: '<string>',
ProjStatusTooltip: '<string>',
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
SaleTypeStageLink: {
SaleTypeStageLinkId: 123,
SaleTypeId: 123,
SaleTypeName: '<string>',
SaleTypeTooltip: '<string>',
ProbId: 123,
ProbName: '<string>',
ProbTooltip: '<string>',
Probability: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
})
};
fetch('http://localhost:56350/api/v1/Agents/Document/SaveSuggestedDocumentEntity', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "56350",
CURLOPT_URL => "http://localhost:56350/api/v1/Agents/Document/SaveSuggestedDocumentEntity",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'SuggestedDocumentId' => 123,
'Name' => '<string>',
'Tooltip' => '<string>',
'Rank' => 123,
'DoctmplId' => 123,
'Header' => '<string>',
'OurRef' => '<string>',
'Deleted' => true,
'DocTmpl' => [
'DocumentTemplateId' => 123,
'Name' => '<string>',
'Tooltip' => '<string>',
'SaveInDb' => 123,
'Filename' => '<string>',
'DefaultOref' => '<string>',
'Deleted' => 123,
'AutoeventId' => 123,
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
],
'ProjectTypeStatusLink' => [
'ProjectTypeStatusLinkId' => 123,
'ProjTypeId' => 123,
'ProjTypeName' => '<string>',
'ProjTypeTooltip' => '<string>',
'ProjStatusId' => 123,
'ProjStatusName' => '<string>',
'ProjStatusTooltip' => '<string>',
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
],
'SaleTypeStageLink' => [
'SaleTypeStageLinkId' => 123,
'SaleTypeId' => 123,
'SaleTypeName' => '<string>',
'SaleTypeTooltip' => '<string>',
'ProbId' => 123,
'ProbName' => '<string>',
'ProbTooltip' => '<string>',
'Probability' => 123,
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
],
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}import requests
url = "http://localhost:56350/api/v1/Agents/Document/SaveSuggestedDocumentEntity"
payload = {
"SuggestedDocumentId": 123,
"Name": "<string>",
"Tooltip": "<string>",
"Rank": 123,
"DoctmplId": 123,
"Header": "<string>",
"OurRef": "<string>",
"Deleted": True,
"DocTmpl": {
"DocumentTemplateId": 123,
"Name": "<string>",
"Tooltip": "<string>",
"SaveInDb": 123,
"Filename": "<string>",
"DefaultOref": "<string>",
"Deleted": 123,
"AutoeventId": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"ProjectTypeStatusLink": {
"ProjectTypeStatusLinkId": 123,
"ProjTypeId": 123,
"ProjTypeName": "<string>",
"ProjTypeTooltip": "<string>",
"ProjStatusId": 123,
"ProjStatusName": "<string>",
"ProjStatusTooltip": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"SaleTypeStageLink": {
"SaleTypeStageLinkId": 123,
"SaleTypeId": 123,
"SaleTypeName": "<string>",
"SaleTypeTooltip": "<string>",
"ProbId": 123,
"ProbName": "<string>",
"ProbTooltip": "<string>",
"Probability": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
SuggestedDocumentId: 123,
Name: '<string>',
Tooltip: '<string>',
Rank: 123,
DoctmplId: 123,
Header: '<string>',
OurRef: '<string>',
Deleted: true,
DocTmpl: {
DocumentTemplateId: 123,
Name: '<string>',
Tooltip: '<string>',
SaveInDb: 123,
Filename: '<string>',
DefaultOref: '<string>',
Deleted: 123,
AutoeventId: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
ProjectTypeStatusLink: {
ProjectTypeStatusLinkId: 123,
ProjTypeId: 123,
ProjTypeName: '<string>',
ProjTypeTooltip: '<string>',
ProjStatusId: 123,
ProjStatusName: '<string>',
ProjStatusTooltip: '<string>',
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
SaleTypeStageLink: {
SaleTypeStageLinkId: 123,
SaleTypeId: 123,
SaleTypeName: '<string>',
SaleTypeTooltip: '<string>',
ProbId: 123,
ProbName: '<string>',
ProbTooltip: '<string>',
Probability: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
})
};
fetch('http://localhost:56350/api/v1/Agents/Document/SaveSuggestedDocumentEntity', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"SuggestedDocumentId": 123,
"Name": "<string>",
"Tooltip": "<string>",
"Rank": 123,
"DoctmplId": 123,
"Header": "<string>",
"OurRef": "<string>",
"Deleted": true,
"DocTmpl": {
"DocumentTemplateId": 123,
"Name": "<string>",
"Tooltip": "<string>",
"SaveInDb": 123,
"Filename": "<string>",
"DefaultOref": "<string>",
"RecordType": "Unknown",
"Deleted": 123,
"Direction": "Unknown",
"AutoeventId": 123,
"QuoteDocType": "None",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"ProjectTypeStatusLink": {
"ProjectTypeStatusLinkId": 123,
"ProjTypeId": 123,
"ProjTypeName": "<string>",
"ProjTypeTooltip": "<string>",
"ProjStatusId": 123,
"ProjStatusName": "<string>",
"ProjStatusTooltip": "<string>",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"SaleTypeStageLink": {
"SaleTypeStageLinkId": 123,
"SaleTypeId": 123,
"SaleTypeName": "<string>",
"SaleTypeTooltip": "<string>",
"ProbId": 123,
"ProbName": "<string>",
"ProbTooltip": "<string>",
"Probability": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}Headers
Convert string references and multi-language values into a specified language (iso2) code.
Convert string references and multi-language values into a specified language (iso2) code. Overrides Accept-Language value.
Number, date formatting in a specified culture (iso2 language) code. Partially overrides SO-Language/Accept-Language value. Ignored if no Language set.
Specify the timezone code that you would like date/time responses converted to.
The application token that identifies the partner app. Used when calling Online WebAPI from a server.
Body
The SuggestedDocumentEntity that is saved
Carrier object for SuggestedDocumentEntity. Services for the SuggestedDocumentEntity Carrier is available from the Document Agent.
Primary key
Item name, visible in Guide
Tooltip / description
Rank, controls rank of non-instantiated items in Guide
Type of the suggested document
Suggested 'header'
Suggested 'our reference'
0 -> record is active 1 -> record is 'deleted' and should not be shown in lists
The template a document is based on is stored in the SO_arc\template folder on the server. This will return the name as displayed in the GUI, and not the physical document name, of the template the document object is based on. Carrier object for DocumentTemplate. Services for the DocumentTemplate Carrier is available from the List Agent.
Show child attributes
Show child attributes
Carrier object for ProjectTypeStatusLink.
Show child attributes
Show child attributes
Carrier object for SaleTypeStageLink.
Show child attributes
Show child attributes
Wraps a table right together with an explanatory reason. Code can indicate why access is restricted.
Show child attributes
Show child attributes
Field property dictionary mapping field names to field access rights.
Show child attributes
Show child attributes
Response
OK
Carrier object for SuggestedDocumentEntity. Services for the SuggestedDocumentEntity Carrier is available from the Document Agent.
Primary key
Item name, visible in Guide
Tooltip / description
Rank, controls rank of non-instantiated items in Guide
Type of the suggested document
Suggested 'header'
Suggested 'our reference'
0 -> record is active 1 -> record is 'deleted' and should not be shown in lists
The template a document is based on is stored in the SO_arc\template folder on the server. This will return the name as displayed in the GUI, and not the physical document name, of the template the document object is based on. Carrier object for DocumentTemplate. Services for the DocumentTemplate Carrier is available from the List Agent.
Show child attributes
Show child attributes
Carrier object for ProjectTypeStatusLink.
Show child attributes
Show child attributes
Carrier object for SaleTypeStageLink.
Show child attributes
Show child attributes
Wraps a table right together with an explanatory reason. Code can indicate why access is restricted.
Show child attributes
Show child attributes
Field property dictionary mapping field names to field access rights.
Show child attributes
Show child attributes
Related topics
NSDocumentAgentGet Suggested Document EntitySave Suggested Appointment EntityNSSuggestedDocumentEntityCreate Default Suggested Document EntitySave Document Entity