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
  • Family List
  • Family Show

Was this helpful?

  1. Integration
  2. REST API

Family

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

Family List

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

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

Query Parameters

Name
Type
Description

pagination[currentPage]

String

Pagination Current Page

pagination[pageLimit]

String

Pagination Limit / Length Number

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": "Family List",
    "data": {
        "record": [
            {
                "id": 15,
                "code": "holder",
                "status": 1,
                "created_by": "Super Admin",
                "created_at": "2023-10-18 12:29:31",
                "updated_at": "2023-10-18 12:29:31",
                "title": "Holder"
            },
            {
                "id": 14,
                "code": "IC",
                "status": 1,
                "created_by": "Super Admin",
                "created_at": "2023-10-18 12:29:19",
                "updated_at": "2023-10-18 13:28:06",
                "title": "IC's"
            },
            {
                "id": 13,
                "code": "Condenser",
                "status": 1,
                "created_by": "Super Admin",
                "created_at": "2023-10-18 12:29:10",
                "updated_at": "2023-10-18 12:29:10",
                "title": "Condenser"
            },
            {
                "id": 12,
                "code": "router",
                "status": 1,
                "created_by": "Super Admin",
                "created_at": "2023-10-18 12:28:58",
                "updated_at": "2023-10-18 12:28:58",
                "title": "Router"
            },
            {
                "id": 11,
                "code": "wings",
                "status": 1,
                "created_by": "Super Admin",
                "created_at": "2023-10-18 12:28:51",
                "updated_at": "2023-10-18 12:28:51",
                "title": "Wings"
            },
            {
                "id": 10,
                "code": "buttons",
                "status": 1,
                "created_by": "Super Admin",
                "created_at": "2023-10-18 12:28:42",
                "updated_at": "2023-10-18 12:28:42",
                "title": "Button"
            },
            {
                "id": 9,
                "code": "switches",
                "status": 1,
                "created_by": "Super Admin",
                "created_at": "2023-10-18 12:28:29",
                "updated_at": "2023-10-18 12:28:29",
                "title": "Switch"
            },
            {
                "id": 8,
                "code": "engine",
                "status": 1,
                "created_by": "Super Admin",
                "created_at": "2023-10-18 12:26:43",
                "updated_at": "2023-10-18 12:26:43",
                "title": "Engine"
            },
            {
                "id": 7,
                "code": "motor",
                "status": 1,
                "created_by": "Super Admin",
                "created_at": "2023-10-18 12:26:35",
                "updated_at": "2023-10-18 12:26:35",
                "title": "Motor"
            },
            {
                "id": 6,
                "code": "os",
                "status": 1,
                "created_by": "Super Admin",
                "created_at": "2023-10-18 12:26:28",
                "updated_at": "2023-10-18 12:26:28",
                "title": "OS"
            }
        ],
        "recordsTotal": 15,
        "currentPage": 1,
        "pageLimit": 10
    },
    "time": "2023-10-20T13:05:42.130473Z",
    "status_code": 200
}

Family Show

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

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

Query Parameters

Name
Type
Description

id*

String

Family 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": "Family Information",
    "data": {
        "id": 14,
        "code": "IC",
        "status": 1,
        "built_in": 0,
        "created_by": "Super Admin",
        "created_at": "2023-10-18 12:29:19",
        "updated_at": "2023-10-18 13:28:06",
        "title": "IC's",
        "attribute": [
            {
                "code": "short_description",
                "attribute_name": "Short Description",
                "group_name": "Seo",
                "id": 8,
                "attribute_sort_id": 0
            },
            {
                "code": "catalog",
                "attribute_name": "Catalog",
                "group_name": "Seo",
                "id": 10,
                "attribute_sort_id": 0
            },
            {
                "code": "size",
                "attribute_name": "Size",
                "group_name": "Seo",
                "id": 15,
                "attribute_sort_id": 0
            },
            {
                "code": "name",
                "attribute_name": "Name",
                "group_name": "General",
                "id": 1,
                "attribute_sort_id": 0
            },
            {
                "code": "sku",
                "attribute_name": "SKU",
                "group_name": "General",
                "id": 2,
                "attribute_sort_id": 0
            },
            {
                "code": "description",
                "attribute_name": "Description",
                "group_name": "General",
                "id": 3,
                "attribute_sort_id": 0
            },
            {
                "code": "image",
                "attribute_name": "Image",
                "group_name": "General",
                "id": 4,
                "attribute_sort_id": 0
            }
        ]
    },
    "time": "2023-10-20T13:07:44.008406Z",
    "status_code": 200
}

Last updated 1 year ago

Was this helpful?