List all pending invitations for a project
GET
/api/v4/projects/{id}/invitations
Lists all pending invitations for a specified project 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 project ID
Query Parameters
Section titled “Query Parameters”page
integer
Current page number
Example
1per_page
integer
Number of items per page
Example
20query
string
A query string to search for members
Responses
Section titled “Responses”OK
Media typeapplication/json
object
access_level
string
created_at
string
expires_at
string
invite_email
string
invite_token
string
user_name
string
created_by_name
string
Examplegenerated
{ "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