using RestSharp;
var options = new RestClientOptions("http://localhost:56350/api/v1/Agents/CRMScript/SaveCRMScriptEntityWithoutCompile");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddJsonBody("{\n \"CrmScriptEntity\": {\n \"EjscriptId\": 123,\n \"UniqueIdentifier\": \"<string>\",\n \"Name\": \"<string>\",\n \"Description\": \"<string>\",\n \"IncludeId\": \"<string>\",\n \"AccessKey\": \"<string>\",\n \"HierarchyId\": 123,\n \"Source\": \"<string>\",\n \"SourceCode\": \"<string>\",\n \"HtmlOutput\": 123,\n \"Includes\": [\n 123\n ],\n \"SourceMaps\": [\n {\n \"LineNumberFrom\": 123,\n \"LineNumberTo\": 123,\n \"Delta\": 123,\n \"IncludeId\": \"<string>\",\n \"IncludedFrom\": [\n \"<string>\"\n ],\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n }\n ],\n \"ValidationResult\": {\n \"Valid\": true,\n \"ErrorMessage\": \"<string>\",\n \"LineNumber\": 123,\n \"ErrorInformation\": {\n \"ErrorMessage\": \"<string>\",\n \"IncludeId\": \"<string>\",\n \"LineNumber\": 123,\n \"CharacterPosition\": 123,\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n },\n \"Transpiled\": \"<string>\",\n \"Includes\": [\n 123\n ],\n \"SourceMaps\": [\n {\n \"LineNumberFrom\": 123,\n \"LineNumberTo\": 123,\n \"Delta\": 123,\n \"IncludeId\": \"<string>\",\n \"IncludedFrom\": [\n \"<string>\"\n ],\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n }\n ],\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n },\n \"Registered\": \"2023-11-07T05:31:56Z\",\n \"RegisteredAssociateId\": 123,\n \"Updated\": \"2023-11-07T05:31:56Z\",\n \"UpdatedAssociateId\": 123,\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n }\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({
CrmScriptEntity: {
EjscriptId: 123,
UniqueIdentifier: '<string>',
Name: '<string>',
Description: '<string>',
IncludeId: '<string>',
AccessKey: '<string>',
HierarchyId: 123,
Source: '<string>',
SourceCode: '<string>',
HtmlOutput: 123,
Includes: [123],
SourceMaps: [
{
LineNumberFrom: 123,
LineNumberTo: 123,
Delta: 123,
IncludeId: '<string>',
IncludedFrom: ['<string>'],
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
}
],
ValidationResult: {
Valid: true,
ErrorMessage: '<string>',
LineNumber: 123,
ErrorInformation: {
ErrorMessage: '<string>',
IncludeId: '<string>',
LineNumber: 123,
CharacterPosition: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
Transpiled: '<string>',
Includes: [123],
SourceMaps: [
{
LineNumberFrom: 123,
LineNumberTo: 123,
Delta: 123,
IncludeId: '<string>',
IncludedFrom: ['<string>'],
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
}
],
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
Registered: '2023-11-07T05:31:56Z',
RegisteredAssociateId: 123,
Updated: '2023-11-07T05:31:56Z',
UpdatedAssociateId: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
}
})
};
fetch('http://localhost:56350/api/v1/Agents/CRMScript/SaveCRMScriptEntityWithoutCompile', 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/CRMScript/SaveCRMScriptEntityWithoutCompile",
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([
'CrmScriptEntity' => [
'EjscriptId' => 123,
'UniqueIdentifier' => '<string>',
'Name' => '<string>',
'Description' => '<string>',
'IncludeId' => '<string>',
'AccessKey' => '<string>',
'HierarchyId' => 123,
'Source' => '<string>',
'SourceCode' => '<string>',
'HtmlOutput' => 123,
'Includes' => [
123
],
'SourceMaps' => [
[
'LineNumberFrom' => 123,
'LineNumberTo' => 123,
'Delta' => 123,
'IncludeId' => '<string>',
'IncludedFrom' => [
'<string>'
],
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
]
],
'ValidationResult' => [
'Valid' => true,
'ErrorMessage' => '<string>',
'LineNumber' => 123,
'ErrorInformation' => [
'ErrorMessage' => '<string>',
'IncludeId' => '<string>',
'LineNumber' => 123,
'CharacterPosition' => 123,
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
],
'Transpiled' => '<string>',
'Includes' => [
123
],
'SourceMaps' => [
[
'LineNumberFrom' => 123,
'LineNumberTo' => 123,
'Delta' => 123,
'IncludeId' => '<string>',
'IncludedFrom' => [
'<string>'
],
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
]
],
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
],
'Registered' => '2023-11-07T05:31:56Z',
'RegisteredAssociateId' => 123,
'Updated' => '2023-11-07T05:31:56Z',
'UpdatedAssociateId' => 123,
'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/CRMScript/SaveCRMScriptEntityWithoutCompile"
payload = { "CrmScriptEntity": {
"EjscriptId": 123,
"UniqueIdentifier": "<string>",
"Name": "<string>",
"Description": "<string>",
"IncludeId": "<string>",
"AccessKey": "<string>",
"HierarchyId": 123,
"Source": "<string>",
"SourceCode": "<string>",
"HtmlOutput": 123,
"Includes": [123],
"SourceMaps": [
{
"LineNumberFrom": 123,
"LineNumberTo": 123,
"Delta": 123,
"IncludeId": "<string>",
"IncludedFrom": ["<string>"],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"ValidationResult": {
"Valid": True,
"ErrorMessage": "<string>",
"LineNumber": 123,
"ErrorInformation": {
"ErrorMessage": "<string>",
"IncludeId": "<string>",
"LineNumber": 123,
"CharacterPosition": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Transpiled": "<string>",
"Includes": [123],
"SourceMaps": [
{
"LineNumberFrom": 123,
"LineNumberTo": 123,
"Delta": 123,
"IncludeId": "<string>",
"IncludedFrom": ["<string>"],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Registered": "2023-11-07T05:31:56Z",
"RegisteredAssociateId": 123,
"Updated": "2023-11-07T05:31:56Z",
"UpdatedAssociateId": 123,
"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({
CrmScriptEntity: {
EjscriptId: 123,
UniqueIdentifier: '<string>',
Name: '<string>',
Description: '<string>',
IncludeId: '<string>',
AccessKey: '<string>',
HierarchyId: 123,
Source: '<string>',
SourceCode: '<string>',
HtmlOutput: 123,
Includes: [123],
SourceMaps: [
{
LineNumberFrom: 123,
LineNumberTo: 123,
Delta: 123,
IncludeId: '<string>',
IncludedFrom: ['<string>'],
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
}
],
ValidationResult: {
Valid: true,
ErrorMessage: '<string>',
LineNumber: 123,
ErrorInformation: {
ErrorMessage: '<string>',
IncludeId: '<string>',
LineNumber: 123,
CharacterPosition: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
Transpiled: '<string>',
Includes: [123],
SourceMaps: [
{
LineNumberFrom: 123,
LineNumberTo: 123,
Delta: 123,
IncludeId: '<string>',
IncludedFrom: ['<string>'],
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
}
],
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
Registered: '2023-11-07T05:31:56Z',
RegisteredAssociateId: 123,
Updated: '2023-11-07T05:31:56Z',
UpdatedAssociateId: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
}
})
};
fetch('http://localhost:56350/api/v1/Agents/CRMScript/SaveCRMScriptEntityWithoutCompile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"EjscriptId": 123,
"UniqueIdentifier": "<string>",
"Name": "<string>",
"Description": "<string>",
"IncludeId": "<string>",
"AccessKey": "<string>",
"HierarchyId": 123,
"Source": "<string>",
"SourceCode": "<string>",
"ScriptType": "Unknown",
"HtmlOutput": 123,
"Includes": [
123
],
"SourceMaps": [
{
"LineNumberFrom": 123,
"LineNumberTo": 123,
"Delta": 123,
"IncludeId": "<string>",
"IncludedFrom": [
"<string>"
],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"ValidationResult": {
"Valid": true,
"ErrorMessage": "<string>",
"LineNumber": 123,
"ErrorInformation": {
"ErrorMessage": "<string>",
"IncludeId": "<string>",
"LineNumber": 123,
"CharacterPosition": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Transpiled": "<string>",
"Includes": [
123
],
"SourceMaps": [
{
"LineNumberFrom": 123,
"LineNumberTo": 123,
"Delta": 123,
"IncludeId": "<string>",
"IncludedFrom": [
"<string>"
],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Registered": "2023-11-07T05:31:56Z",
"RegisteredAssociateId": 123,
"Updated": "2023-11-07T05:31:56Z",
"UpdatedAssociateId": 123,
"BlockedVerbs": "BlockNone",
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}Save C R M Script Entity Without Compile
Save the script directly without compiling TypeScript
NsApiSlow threshold: 5000 ms.
using RestSharp;
var options = new RestClientOptions("http://localhost:56350/api/v1/Agents/CRMScript/SaveCRMScriptEntityWithoutCompile");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddJsonBody("{\n \"CrmScriptEntity\": {\n \"EjscriptId\": 123,\n \"UniqueIdentifier\": \"<string>\",\n \"Name\": \"<string>\",\n \"Description\": \"<string>\",\n \"IncludeId\": \"<string>\",\n \"AccessKey\": \"<string>\",\n \"HierarchyId\": 123,\n \"Source\": \"<string>\",\n \"SourceCode\": \"<string>\",\n \"HtmlOutput\": 123,\n \"Includes\": [\n 123\n ],\n \"SourceMaps\": [\n {\n \"LineNumberFrom\": 123,\n \"LineNumberTo\": 123,\n \"Delta\": 123,\n \"IncludeId\": \"<string>\",\n \"IncludedFrom\": [\n \"<string>\"\n ],\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n }\n ],\n \"ValidationResult\": {\n \"Valid\": true,\n \"ErrorMessage\": \"<string>\",\n \"LineNumber\": 123,\n \"ErrorInformation\": {\n \"ErrorMessage\": \"<string>\",\n \"IncludeId\": \"<string>\",\n \"LineNumber\": 123,\n \"CharacterPosition\": 123,\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n },\n \"Transpiled\": \"<string>\",\n \"Includes\": [\n 123\n ],\n \"SourceMaps\": [\n {\n \"LineNumberFrom\": 123,\n \"LineNumberTo\": 123,\n \"Delta\": 123,\n \"IncludeId\": \"<string>\",\n \"IncludedFrom\": [\n \"<string>\"\n ],\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n }\n ],\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n },\n \"Registered\": \"2023-11-07T05:31:56Z\",\n \"RegisteredAssociateId\": 123,\n \"Updated\": \"2023-11-07T05:31:56Z\",\n \"UpdatedAssociateId\": 123,\n \"TableRight\": {\n \"Mask\": \"<string>\",\n \"Reason\": \"<string>\"\n },\n \"FieldProperties\": {}\n }\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({
CrmScriptEntity: {
EjscriptId: 123,
UniqueIdentifier: '<string>',
Name: '<string>',
Description: '<string>',
IncludeId: '<string>',
AccessKey: '<string>',
HierarchyId: 123,
Source: '<string>',
SourceCode: '<string>',
HtmlOutput: 123,
Includes: [123],
SourceMaps: [
{
LineNumberFrom: 123,
LineNumberTo: 123,
Delta: 123,
IncludeId: '<string>',
IncludedFrom: ['<string>'],
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
}
],
ValidationResult: {
Valid: true,
ErrorMessage: '<string>',
LineNumber: 123,
ErrorInformation: {
ErrorMessage: '<string>',
IncludeId: '<string>',
LineNumber: 123,
CharacterPosition: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
Transpiled: '<string>',
Includes: [123],
SourceMaps: [
{
LineNumberFrom: 123,
LineNumberTo: 123,
Delta: 123,
IncludeId: '<string>',
IncludedFrom: ['<string>'],
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
}
],
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
Registered: '2023-11-07T05:31:56Z',
RegisteredAssociateId: 123,
Updated: '2023-11-07T05:31:56Z',
UpdatedAssociateId: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
}
})
};
fetch('http://localhost:56350/api/v1/Agents/CRMScript/SaveCRMScriptEntityWithoutCompile', 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/CRMScript/SaveCRMScriptEntityWithoutCompile",
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([
'CrmScriptEntity' => [
'EjscriptId' => 123,
'UniqueIdentifier' => '<string>',
'Name' => '<string>',
'Description' => '<string>',
'IncludeId' => '<string>',
'AccessKey' => '<string>',
'HierarchyId' => 123,
'Source' => '<string>',
'SourceCode' => '<string>',
'HtmlOutput' => 123,
'Includes' => [
123
],
'SourceMaps' => [
[
'LineNumberFrom' => 123,
'LineNumberTo' => 123,
'Delta' => 123,
'IncludeId' => '<string>',
'IncludedFrom' => [
'<string>'
],
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
]
],
'ValidationResult' => [
'Valid' => true,
'ErrorMessage' => '<string>',
'LineNumber' => 123,
'ErrorInformation' => [
'ErrorMessage' => '<string>',
'IncludeId' => '<string>',
'LineNumber' => 123,
'CharacterPosition' => 123,
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
],
'Transpiled' => '<string>',
'Includes' => [
123
],
'SourceMaps' => [
[
'LineNumberFrom' => 123,
'LineNumberTo' => 123,
'Delta' => 123,
'IncludeId' => '<string>',
'IncludedFrom' => [
'<string>'
],
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
]
],
'TableRight' => [
'Mask' => '<string>',
'Reason' => '<string>'
],
'FieldProperties' => [
]
],
'Registered' => '2023-11-07T05:31:56Z',
'RegisteredAssociateId' => 123,
'Updated' => '2023-11-07T05:31:56Z',
'UpdatedAssociateId' => 123,
'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/CRMScript/SaveCRMScriptEntityWithoutCompile"
payload = { "CrmScriptEntity": {
"EjscriptId": 123,
"UniqueIdentifier": "<string>",
"Name": "<string>",
"Description": "<string>",
"IncludeId": "<string>",
"AccessKey": "<string>",
"HierarchyId": 123,
"Source": "<string>",
"SourceCode": "<string>",
"HtmlOutput": 123,
"Includes": [123],
"SourceMaps": [
{
"LineNumberFrom": 123,
"LineNumberTo": 123,
"Delta": 123,
"IncludeId": "<string>",
"IncludedFrom": ["<string>"],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"ValidationResult": {
"Valid": True,
"ErrorMessage": "<string>",
"LineNumber": 123,
"ErrorInformation": {
"ErrorMessage": "<string>",
"IncludeId": "<string>",
"LineNumber": 123,
"CharacterPosition": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Transpiled": "<string>",
"Includes": [123],
"SourceMaps": [
{
"LineNumberFrom": 123,
"LineNumberTo": 123,
"Delta": 123,
"IncludeId": "<string>",
"IncludedFrom": ["<string>"],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Registered": "2023-11-07T05:31:56Z",
"RegisteredAssociateId": 123,
"Updated": "2023-11-07T05:31:56Z",
"UpdatedAssociateId": 123,
"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({
CrmScriptEntity: {
EjscriptId: 123,
UniqueIdentifier: '<string>',
Name: '<string>',
Description: '<string>',
IncludeId: '<string>',
AccessKey: '<string>',
HierarchyId: 123,
Source: '<string>',
SourceCode: '<string>',
HtmlOutput: 123,
Includes: [123],
SourceMaps: [
{
LineNumberFrom: 123,
LineNumberTo: 123,
Delta: 123,
IncludeId: '<string>',
IncludedFrom: ['<string>'],
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
}
],
ValidationResult: {
Valid: true,
ErrorMessage: '<string>',
LineNumber: 123,
ErrorInformation: {
ErrorMessage: '<string>',
IncludeId: '<string>',
LineNumber: 123,
CharacterPosition: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
Transpiled: '<string>',
Includes: [123],
SourceMaps: [
{
LineNumberFrom: 123,
LineNumberTo: 123,
Delta: 123,
IncludeId: '<string>',
IncludedFrom: ['<string>'],
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
}
],
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
},
Registered: '2023-11-07T05:31:56Z',
RegisteredAssociateId: 123,
Updated: '2023-11-07T05:31:56Z',
UpdatedAssociateId: 123,
TableRight: {Mask: '<string>', Reason: '<string>'},
FieldProperties: {}
}
})
};
fetch('http://localhost:56350/api/v1/Agents/CRMScript/SaveCRMScriptEntityWithoutCompile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"EjscriptId": 123,
"UniqueIdentifier": "<string>",
"Name": "<string>",
"Description": "<string>",
"IncludeId": "<string>",
"AccessKey": "<string>",
"HierarchyId": 123,
"Source": "<string>",
"SourceCode": "<string>",
"ScriptType": "Unknown",
"HtmlOutput": 123,
"Includes": [
123
],
"SourceMaps": [
{
"LineNumberFrom": 123,
"LineNumberTo": 123,
"Delta": 123,
"IncludeId": "<string>",
"IncludedFrom": [
"<string>"
],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"ValidationResult": {
"Valid": true,
"ErrorMessage": "<string>",
"LineNumber": 123,
"ErrorInformation": {
"ErrorMessage": "<string>",
"IncludeId": "<string>",
"LineNumber": 123,
"CharacterPosition": 123,
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Transpiled": "<string>",
"Includes": [
123
],
"SourceMaps": [
{
"LineNumberFrom": 123,
"LineNumberTo": 123,
"Delta": 123,
"IncludeId": "<string>",
"IncludedFrom": [
"<string>"
],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
}
],
"TableRight": {
"Mask": "<string>",
"Reason": "<string>"
},
"FieldProperties": {}
},
"Registered": "2023-11-07T05:31:56Z",
"RegisteredAssociateId": 123,
"Updated": "2023-11-07T05:31:56Z",
"UpdatedAssociateId": 123,
"BlockedVerbs": "BlockNone",
"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.
Query Parameters
Optional comma separated list of properties to include in the result. Other fields are then nulled out to reduce payload size: "Name,department,category". Default = show all fields.
Body
CrmScriptEntity
SaveCRMScriptEntityWithoutCompile: Save the script directly without compiling TypeScript
CRM Scripts - stored in the ejScript table, including source code. Carrier object for CRMScriptEntity. Services for the CRMScriptEntity Carrier is available from the CRMScript Agent.
Show child attributes
Show child attributes
Response
OK
CRM Scripts - stored in the ejScript table, including source code. Carrier object for CRMScriptEntity. Services for the CRMScriptEntity Carrier is available from the CRMScript Agent.
Primary key
Global unique identifier, accross customers/tenants
A description of this script
Optional description of what this script is used for.
A unique name used for including this script in another
Access key used to run this script on the customer pages
The script is inside this hierarchy folder
The script
Contains the source code of the script
The type/language of this script
Unknown, CRMScript, JavaScript True if this script will return HTML output
The unique ids of all depencies of this script (all resolved includes)
The source maps for this script
Show child attributes
Show child attributes
Object for returning information when validating a CRMScript Carrier object for CRMScriptResult. Services for the CRMScriptResult Carrier is available from the CRMScript Agent.
Show child attributes
Show child attributes
Registered when in UTC.
Registered by whom
Last updated when in UTC.
Last updated by whom
The verbs that are blocked when calling a ejscript over HTTP
BlockNone, BlockGET, BlockPOST, BlockPUT, BlockDELETE, BlockPATCH, BlockOPTIONS, BlockHEAD, BlockTRACE, BlockCONNECT, BlockOTHER, BlockAll 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
Save Project Entity Without MembersNSProjectAgentSave C R M Script EntitySave Trigger Script EntitySaveSave Ticket Type Entity