Added endpoint to create groups
POST /v1/groups
Create a new group by passing group_name in the request body. The response returns the numeric id of the newly created group.
Added group and subgroup assignment to listings update
POST /v1/listings
You can now assign a listing to a group or subgroup when updating listings. Pass optional group_id and subgroup_id (numeric IDs) on each listing in the request body. The response contains the updated group_id and subgroup_id for each listing.
Per-listing errors may be returned when group or subgroup updates fail, alongside existing tag and sync failures.
Notes
- Use
GET /v1/groupsto obtain valid group IDs before assigning listings.