Integrate and interact with Unbxd PIM
Get Properties API
The Get Properties API lets you retrieve all the product properties from a specific organization.
Endpoint:
POST /v1/properties
Request Parameters:
Header
Name: Value | Required | Data Type |
content-type: application/json | Yes | String |
Authorization: api_key | Yes | String |
Request Body:
{
"page": 1,
"count": 100
}
Schema
Name | Data Type | Description |
page | Integer | Page number in a paginated list of properties |
count | Integer | Number of properties to be retrieved in a page
Upper limit: 100 |
Response:
{
"data": {
"total": 1000,
"properties": [{
"name": "brand",
"data_type": "string"
}]
}
}
Schema
Name | Data Type | Description |
total | Integer | Total number of properties |
name | String | Name of the property |
data type | String | Data type of the property |
0 of 0 users found this section helpful