Attribute

The API documentation provides the means to retrieve Attribute data from PIM.

Attribute List

GET https://api.dckappim.com/api/integration/attribute

By utilizing the endpoint, you can retrieve attribute list information.

Query Parameters

NameTypeDescription

pagination[currentPage]

String

Pagination - Current Page Number

pagination[pageLimit]

String

Paginagtion - Page Limit / Length

Headers

NameTypeDescription

token*

String

Access Token for PIM Integration.

x-domain*

String

Customer Account Name Example: For the Customer Account URL "demo.dckappim.com," the customer account name is "demo."

{
    "status": true,
    "message": "Attribute List",
    "data": {
        "record": [
            {
                "id": 5,
                "code": "meta_description",
                "built_in": 0,
                "created_by": "Super Admin",
                "title": "Meta Description",
                "type": "Text Area/Rich Text",
                "group_name": "Seo",
                "group_id": 2
            },
            {
                "id": 6,
                "code": "meta_keyword",
                "built_in": 0,
                "created_by": "Super Admin",
                "title": "Meta Keyword",
                "type": "Text Area/Rich Text",
                "group_name": "Seo",
                "group_id": 2
            }
        ],
        "recordsTotal": 12,
        "currentPage": 1,
        "pageLimit": 2
    },
    "time": "2023-10-20T09:50:54.133152Z",
    "status_code": 200
}

Attribute Show

GET https://api.dckappim.com/api/integration/attribute/show

By utilizing the endpoint, you can retrieve specific attribute information.

Query Parameters

NameTypeDescription

id*

String

Attribute Id

Headers

NameTypeDescription

token*

String

Access Token for PIM Integration.

x-domain*

String

Customer Account Name Example: For the Customer Account URL "demo.dckappim.com," the customer account name is "demo."

{
    "status": true,
    "message": "Attribute Information",
    "data": {
        "id": 5,
        "code": "meta_description",
        "attribute_type_id": 3,
        "status": 1,
        "is_required": 0,
        "built_in": 0,
        "updated_at": "2023-10-09 18:16:49",
        "type": "textarea",
        "attribute_group": "Seo",
        "family": [
            "Basic"
        ]
    },
    "time": "2023-10-20T09:55:30.251452Z",
    "status_code": 200
}

Last updated