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