GET 3dCartWebAPI/v1/FrontendScripts/{id}


Get a Frontend Script

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

FrontendScripts ID

integer

Required

Body Parameters

None.


Sample Request



Response Information

Resource Description

Collection of FrontendScripts
NameDescriptionTypeAdditional 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": "04/25/2024 19:59",
    "LastUpdate": "04/25/2024 19:59"
  },
  {
    "FrontendScriptID": 1,
    "Placement": "sample string 1",
    "Code": "sample string 2",
    "DateCreated": "04/25/2024 19:59",
    "LastUpdate": "04/25/2024 19:59"
  }
]

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>2024-04-25T19:59:52.4836745-04:00</DateCreated>
    <LastUpdate>2024-04-25T19:59:52.4836745-04:00</LastUpdate>
  </FrontendScripts>
  <FrontendScripts>
    <FrontendScriptID>1</FrontendScriptID>
    <Placement>sample string 1</Placement>
    <Code>sample string 2</Code>
    <DateCreated>2024-04-25T19:59:52.4836745-04:00</DateCreated>
    <LastUpdate>2024-04-25T19:59:52.4836745-04:00</LastUpdate>
  </FrontendScripts>
</ArrayOfFrontendScripts>