List all pending invitations for a group
GET
/api/v4/groups/{id}/invitations
Lists all pending invitations for a specified group viewable by the authenticated user. Returns invitations to direct members only, and not through inherited ancestor groups. This function takes pagination parameters page and per_page to restrict the list of members.
Authorizations
Section titled “ Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “ Path Parameters ” id
required
string
The group ID
Query Parameters
Section titled “ Query Parameters ” page
integer
Current page number
Example
1 per_page
integer
Number of items per page
Example
20 query
string
A query string to search for members
Responses
Section titled “ Responses ”OK
Media type application/json
object
access_level
string
created_at
string
expires_at
string
invite_email
string
invite_token
string
user_name
string
created_by_name
string
Example generated
{ "access_level": "example", "created_at": "example", "expires_at": "example", "invite_email": "example", "invite_token": "example", "user_name": "example", "created_by_name": "example"}Bad Request
Not Found