DCKAP PIM
Release NotesRoadmap
  • overview
    • What is Product Information Management (PIM) ?
    • DCKAP PIM: Streamline Product Data Management with Ease
    • How to Access DCKAP PIM?
  • Getting started
    • Dashboard
      • Components
      • Header
    • Categories
      • Create Category
      • Tree View
        • Edit Category
        • Assign Channel
        • Assign Products
        • Delete Category
        • Activity Logs
      • List View
        • Edit Category
        • Assign Products
        • Delete Category
    • Attributes
      • Create Attribute
      • Edit Attribute
      • Delete Attribute
    • Attribute Groups
      • Create Attribute Group
      • Assign/Unassign Attribute
      • Edit Attribute Group
      • Delete Attribute Group
    • Families
    • Channels
    • Product Relation
    • Rules
    • Product
      • Create Product
      • Update Product
      • Attribute Group
      • Product Type
      • Relations
      • Channel
      • Assets
      • Activity Log
      • Quick Edit
    • Assets
    • Import
      • Product Import
      • Category
      • Attribute
      • Family
      • Assets
      • Variant Import
      • Variant Assign Import
      • Group
      • Custom Import
      • Log Management
    • Export
      • Category
      • Attribute
      • Family
      • Variants
      • Product
      • Assets
    • Settings
      • Manage Users
      • Manage Roles
      • Product Status
      • Locale
      • Currencies
      • General Settings
    • Notifications
  • Integration
    • REST API
      • Authentication
      • Attribute
      • Category
      • Product
      • Family
      • Channels
      • Locale
      • Currency
  • Extension
    • DCKAP PIM Marketplace Extension
    • PIM Adobe Commerce Extension
      • Configuration
      • Attribute Mapping
      • Sync
        • Category Sync
        • Product Sync
      • Magento Log Management Documentation | PIM Sync Audit Logs
    • PIM Bigcommerce Extension
      • Store Configuration
      • Attribute Relation
  • Others
    • Product Roadmap
    • Release Notes
      • 2.3.5 June 1, 2024
      • 2.3.4 May 9, 2024
      • 2.3.3 April 3, 2024
      • 2.3.2 February 5, 2024
      • 2.3.1 January 4, 2024
    • DOCUMENT CONTROL
Powered by GitBook
On this page
  • Attribute List
  • Attribute Show

Was this helpful?

  1. Integration
  2. REST API

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

Name
Type
Description

pagination[currentPage]

String

Pagination - Current Page Number

pagination[pageLimit]

String

Paginagtion - Page Limit / Length

Headers

Name
Type
Description

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

Name
Type
Description

id*

String

Attribute Id

Headers

Name
Type
Description

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 1 year ago

Was this helpful?