Whitelist - Huddle/huddle-apis GitHub Wiki
A Whitelist represents the allowed emails and email domains that members of a Company can have. A Company can only have one Whitelist and it can either apply to all Workspace in the Company or a sub-set of them. When retrieving a Company, the Company will advertise a "whitelist" link, which can be used by a Company Manager to retrive the Whitelist.
If a Whitelist has not been created for a Company then a default Whitelist, which is disabled and has no workspaces or entries, will be returned.
GET /people/companies/123/whitelist
Accept: application/vnd.huddle.data+xml
Authorization: OAuth2 frootymcnooty/vonbootycherooty
HTTP/1.1 200 OK
Content-Type: application/vnd.huddle.data+xml
<whitelist>
<links>
<link href="..." rel="self"/>
<link href="..." rel="parent"/>
<link href="..." rel="edit"/>
</links>
<enabled>true<enabled>
<entries>
<entry>huddle.net<entry>
<entry>[email protected]</entry>
</entries>
<workspaces>
<workspace>
<link rel="self" href="..." />
<name>My Important Workspace</name>
</workspace>
<workspace>
<link rel="self" href="..." />
<name>My Secret Workspace</name>
</workspace>
</workspaces>
</whitelist>
GET /people/companies/123/whitelist
Accept: application/vnd.huddle.data+json
Authorization: OAuth2 frootymcnooty/vonbootycherooty
HTTP/1.1 200 OK
Content-Type: application/vnd.huddle.data+json
{
"links": [{
"rel": "self",
"href": "..."
},{
"rel": "parent",
"href": "..."
},{
"rel": "edit",
"href": "..."
}],
"enabled": true,
"entries": [
"huddle.net",
"[email protected]"
],
"workspaces" : [{
"links" : [
{ "rel" : "self", "href" : "..." }
],
"name" : "My Important Workspace"
},{
"links" : [
{ "rel" : "self", "href" : "..." }
],
"name" : "My Secret Workspace"
}]
}
Name | Description | Methods |
---|---|---|
self | The current URI of this company whitelist | GET |
parent | The URI of the company | GET |
edit | The URI to update the whitelist | PUT |
Case | Response |
---|---|
Invalid authorization token | 401 Unauthorized |
Not a Company Manager | 403 Forbidden |