GET 3dCartWebAPI/v1/FrontendScripts/{id}
Get a Frontend Script
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
FrontendScripts ID |
integer |
Required |
Body Parameters
None.
Sample Request |
|
Response Information
Resource Description
Collection of 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. |
Response Formats
application/json, text/json
Sample:
[
{
"FrontendScriptID": 1,
"Placement": "sample string 1",
"Code": "sample string 2",
"DateCreated": "12/09/2025 23:00",
"LastUpdate": "12/09/2025 23:00"
},
{
"FrontendScriptID": 1,
"Placement": "sample string 1",
"Code": "sample string 2",
"DateCreated": "12/09/2025 23:00",
"LastUpdate": "12/09/2025 23:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfFrontendScripts xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<FrontendScripts>
<FrontendScriptID>1</FrontendScriptID>
<Placement>sample string 1</Placement>
<Code>sample string 2</Code>
<DateCreated>2025-12-09T23:00:36.1089475-05:00</DateCreated>
<LastUpdate>2025-12-09T23:00:36.1089475-05:00</LastUpdate>
</FrontendScripts>
<FrontendScripts>
<FrontendScriptID>1</FrontendScriptID>
<Placement>sample string 1</Placement>
<Code>sample string 2</Code>
<DateCreated>2025-12-09T23:00:36.1089475-05:00</DateCreated>
<LastUpdate>2025-12-09T23:00:36.1089475-05:00</LastUpdate>
</FrontendScripts>
</ArrayOfFrontendScripts>