| 1 | <?php |
||
| 16 | class Roles extends Api |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * List roles (permission needed: #organization:read) |
||
| 20 | * Get all available roles for an organization |
||
| 21 | * |
||
| 22 | * @param string $organization_identifier |
||
| 23 | */ |
||
| 24 | public function roles($organization_identifier) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Role details (permission needed: #organization:read) |
||
| 31 | * Get information about a specific role for an organization |
||
| 32 | * |
||
| 33 | * @param string $organization_identifier |
||
| 34 | * @param string $identifier |
||
| 35 | */ |
||
| 36 | public function details($organization_identifier, $identifier) |
||
| 40 | } |
||
| 41 |