A list of ThreatExchangeMembers to which data can be shared. Only available in versions 2.4+ of the Graph API.
Parameter | Description | Type |
---|---|---|
| Unique identifier of the threat privacy group |
|
| The name of the threat privacy group |
|
| A human readable description of the group |
|
| If true, group members can view this group, including its name, description, and list of members |
|
| If true, members are allowed to use this group to protect their own threat data |
|
To create a privacy group, one could POST to:
https://graph.facebook.com/v2.4/threat_privacy_groups?name=GROUP1&description=MYFIRSTGROUP&access_token=555|asdF123
Data returned:
{ "id": "123456789101112" }
Name | Description | Type |
---|---|---|
| Members of the privacy group |
Example query for a specific privacy group: 123456789101112
https://graph.facebook.com/v2.4/123456789101112/members/?access_token=555|aSdF123GhK
Data returned:
{ "data": [ { "id": "999999999999", "email": "threatexchange@domain.com", "name": "Facebook Administrator" } ... ] }