POST 3dCartWebAPI/v1/FrontendScripts
Adds a new frontend script to the system
Request Information
URI Parameters
None.
Body Parameters
A Json or XML object containing the new frontend script
FrontendScripts| Name | Description | Type | Additional information |
|---|---|---|---|
| FrontendScriptID |
Primary key. Auto-incremented. database reference = FrontendScripts.id |
integer |
None. |
| Placement |
(BODY | HEAD) database reference = FrontendScripts.placement |
string |
String length: inclusive between 0 and 50 |
| Code |
database reference = FrontendScripts.code |
string |
String length: inclusive between 0 and 65535 |
| DateCreated |
database reference = FrontendScripts.date_created |
date |
None. |
| LastUpdate |
database reference = FrontendScripts.last_update |
date |
None. |
Request Formats
application/json, text/json
Sample:
{
"FrontendScriptID": 1,
"Placement": "sample string 1",
"Code": "sample string 2",
"DateCreated": "11/15/2025 09:54",
"LastUpdate": "11/15/2025 09:54"
}
application/xml, text/xml
Sample:
<FrontendScripts xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <FrontendScriptID>1</FrontendScriptID> <Placement>sample string 1</Placement> <Code>sample string 2</Code> <DateCreated>2025-11-15T09:54:27.7810814-05:00</DateCreated> <LastUpdate>2025-11-15T09:54:27.7810814-05:00</LastUpdate> </FrontendScripts>
Sample Request |
|
Response Information
application/json, text/json
Sample:
[
{
"Key":"FrontendScriptID",
"Value":"1234",
"Status":"201",
"Message":"Created successfully",
}
]
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |