We have detected an error in your notification set-up
(Event-ID dab39dc24f564ec7bd4628d1305fd03c).
Currently, we cannot inform you about inspection progress.
Please check that the user
557058:bca11929-8c2d-43f2-8a82-c5416880d395
still has access to your repository or
update the API account.
1 | <?php |
||
24 | class Invitations extends Api |
||
25 | { |
||
26 | /** |
||
27 | * Get a list of pending invitations |
||
28 | * |
||
29 | * @access public |
||
30 | * @param string $account The name of an individual or team account. |
||
31 | * @return ResponseInterface |
||
32 | 1 | */ |
|
33 | public function all($account) |
||
39 | |||
40 | /** |
||
41 | * Issues an invitation to the specified account group. |
||
42 | * |
||
43 | * An invitation is a request sent to an external email address to participate one or more of an account's groups. |
||
44 | * |
||
45 | * @access public |
||
46 | * @param string $account The name of an individual or team account. |
||
47 | * @param string $groupSlug An identifier for the group. |
||
48 | * @param string $email Name of the email address |
||
49 | 1 | * @return ResponseInterface |
|
50 | */ |
||
51 | 1 | public function create($account, $groupSlug, $email) |
|
58 | |||
59 | /** |
||
60 | * Delete pending invitations by email address |
||
61 | * |
||
62 | * Deletes any pending invitations on a team or individual account for a particular email address. |
||
63 | * |
||
64 | * @access public |
||
65 | * @param string $account The name of an individual or team account. |
||
66 | 1 | * @param string $email Name of the email address to delete. |
|
67 | * @return ResponseInterface |
||
68 | 1 | */ |
|
69 | 1 | public function deleteByEmail($account, $email) |
|
76 | |||
77 | /** |
||
78 | * Delete pending invitations by group |
||
79 | * |
||
80 | * Deletes a pending invitation for a particular email on account's group. |
||
81 | * |
||
82 | * @access public |
||
83 | * @param string $account The name of an individual or team account. |
||
84 | * @param string $groupSlug An identifier for the group. |
||
85 | 1 | * @param string $email Name of the email address to delete. |
|
86 | * @return ResponseInterface |
||
87 | 1 | */ |
|
88 | 1 | public function deleteByGroup($account, $groupSlug, $email) |
|
95 | } |
||
96 |