Parameters

attribute_group
dictionary
id
number
name
string
active
boolean
icon_path
string
order_by
number
type
string
created_at
number
updated_at
number
POST/v1/attribute_groups
curl https://api.tradly.app/v1/attribute_groups \
  -H "Authorization: Bearer YOUR_PUBLISHABLE_OR_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -X POST \
  -d '{
  "attribute_group": {
    "id": 1,
    "name": "Contact Information",
    "active": true,
    "icon_path": "",
    "order_by": 1,
    "type": "listings",
    "created_at": 1696680265,
    "updated_at": 1696680265
  }
}'
RESPONSE
{
  "status": true,
  "data": {
    "attribute": {
      "id": 1
    }
  }
}