curl -X GET 'https://api.example.com/tag-group-bindings?tagGroupId=tag_group_departments' \
-H 'Authorization: Bearer YOUR_TOKEN'
[
{
"id": "tag_binding_001",
"tagGroupId": "tag_group_departments",
"modelType": "subject",
"modelId": null
},
{
"id": "tag_binding_002",
"tagGroupId": "tag_group_departments",
"modelType": "resource",
"modelId": null
}
]
List tag group bindings with optional filters
curl -X GET 'https://api.example.com/tag-group-bindings?tagGroupId=tag_group_departments' \
-H 'Authorization: Bearer YOUR_TOKEN'
[
{
"id": "tag_binding_001",
"tagGroupId": "tag_group_departments",
"modelType": "subject",
"modelId": null
},
{
"id": "tag_binding_002",
"tagGroupId": "tag_group_departments",
"modelType": "resource",
"modelId": null
}
]
resource, resource_type, subject, role, permissioncurl -X GET 'https://api.example.com/tag-group-bindings?tagGroupId=tag_group_departments' \
-H 'Authorization: Bearer YOUR_TOKEN'
[
{
"id": "tag_binding_001",
"tagGroupId": "tag_group_departments",
"modelType": "subject",
"modelId": null
},
{
"id": "tag_binding_002",
"tagGroupId": "tag_group_departments",
"modelType": "resource",
"modelId": null
}
]
Was this page helpful?