Skip to content

Update an invitation to a project

PUT
/api/v4/projects/{id}/invitations/{email}

Updates a pending invitation to a project.

id
required
string

The project ID

email
required
string

The email address of the invitation

Media type application/json
object
access_level

A valid access level (defaults: 30, developer access level)

integer
nullable
Allowed values: 10 15 20 25 30 40 50
expires_at

Date string in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ)

string format: date-time
nullable
member_role_id

The ID of a member role for the invited user

integer
nullable

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