Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

Folgende Informationen können abgefragt werden:

  • Identifier der Tabellen

  • Identifier der Tabellenspalten

  • Eltern und Kind Tabellen

Status
colourGrey
titleGET

Strukturanfrage aller exitsierenden Tabellen
Codeblock
languagebashtitleStrukturanfrage aller exitsierenden Tabellen
GET $YOUR_DOMAIN_URL/rest/v4/$COLLATION/structure/
Content-Type:application/x-www-form-urlencoded
Authorization:$ACCESS_TOKEN

Status

...

titleGET

Strukturanfrage einer bestimmten Tabelle
Codeblock
languagebashtitleStrukturanfrage einer bestimmten Tabelle
GET $YOUR_DOMAIN_URL/rest/v4/$COLLATION/structure/$IDENTIFIER/
Content-Type:application/x-www-form-urlencoded
Authorization:$ACCESS_TOKEN


Beispiel Response
Codeblock
languagejstitleBeispiel Response
{
    "code": 0,
    "message": "Success",
    "body": {
        "resource": {},
        "result": {
            "identifier": "shopArticle",
            "columns": [
                "shopArticleActive",
                "shopArticleVisibilityHome",
                "shopArticleVisibilityMenu",
                "shopArticleSku",
                "shopArticleGtin",
                "shopArticleClassifications",
                "shopArticleVariantProfileID",
                "shopArticleName",
                "shopArticleNewFrom",
                "shopArticleNewTo",
                "shopArticleDescription",
                "shopArticleSeoDescription",
                "shopArticleImage1",
                "shopArticleImage2",
                "shopArticleImage3",
                "shopArticleImage4",
                "shopArticleImage5",
                "shopArticleImage6",
                "shopArticleImage7",
                "shopArticleImage8",
                "shopArticleImage9",
                "shopArticleImage10",
                "shopArticleDownload1",
                "shopArticleDownload2",
                "shopArticleDownload3",
                "shopArticleDownload4",
                "shopArticleDownload5",
                "shopArticlePrice",
                "shopArticleSpecialPrice",
                "shopArticleVatRateID",
                "shopArticleSalesUnit",
                "shopArticlePackageUnitID",
                "shopArticleAllowedOrderQuantities",
                "shopArticleMinimumOrderQuantity",
                "shopArticleWeight",
                "shopArticleDeliveryTime",
                "shopArticleWorkflowID",
                "shopArticleMetaTitle",
                "shopArticleMetaKeywords",
                "shopArticleMetaDescription",
                "shopArticleMetaRobots",
                "shopArticleDetailLayout",
                "baseJson",
                "shopArticleSupplierID",
                "changeTime",
                "clientID",
                "createTime",
                "domainID",
                "id",
                "userID",
                "userTable"
            ],
            "links": [
                "/rest/v2/join/serverRest.structure/shopArticle/"
            ],
            "parents": [
                "shopGroup"
            ],
            "children": [
                "shopArticleTemplate",
                "price",
                "shopArticleVariant"
            ]
        }
    }
}

...