Skip to main content

PIMS Attributes Management API

POST 

https://instancename.piminto.com/api/en-us/pim/manage/attributes

A Product Attribute in the Product Information Management System (PIM) refers to the specific characteristics or details that define a product.

Well-defined attributes provide structured data to various data endpoints and websites, enhancing their usability across multiple channels, including eCommerce.

To utilize this API, send a POST request with a JSON body. Set the action key in the JSON body to one of the following values:

  • listAttributeGroups: Get list of all Attribute Groups
  • listAttributes: Get all attributes
  • addAttribute: Add Attribute
  • editAttribute: Edit Attribute
  • deleteAttribute: Delete Attribute

Use Example Value and Schema for Json requests

Request

Body

required
    oneOf
    action stringrequired

    Possible values: [listAttributeGroups, listAttributes]

Responses

success

Schema
    oneOf
    status stringrequired
    data string[]required

    Name Attribute Groups

Authorization: ApiKey

name: ApiKeytype: apiKeyin: header
curl -L -X POST 'https://instancename.piminto.com/api/en-us/pim/manage/attributes' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'ApiKey: <API_KEY_VALUE>' \
--data-raw '{
"action": "listAttributeGroups"
}'
Request Collapse all
Base URL
https://instancename.piminto.com/api/en-us
Auth
Body required
{
  "action": "listAttributeGroups"
}
ResponseClear

Click the Send API Request button above and see the response here!