Was this helpful?
Retrieve a collection of user groups applied to outbound rule.
The unique ID of outbound rule.
The unique ID of the resource.
GET /api/outbound_rules/{id}/applied_groups HTTP/1.1 Host: hostname:8887 Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
OK
{ "items": [ { "id": "NzAwNTUxOTA5NzczMTQ4MTYw", "name": "text", "description": "text" } ] }
Check if a group has outbound rule applied.
The unique ID of user group.
GET /api/outbound_rules/{id}/applied_groups/{group_id} HTTP/1.1 Host: hostname:8887 Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
{ "id": "NzAwNTUxOTA5NzczMTQ4MTYw", "name": "text", "description": "text" }
Apply a group to outbound rule.
POST /api/outbound_rules/{id}/applied_groups/{group_id} HTTP/1.1 Host: hostname:8887 Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
No Content