Commit 19c9dbf7 authored by Adam Niedzielski's avatar Adam Niedzielski

Update API documentation.

parent 245d4abb
...@@ -894,10 +894,13 @@ Parameters: ...@@ -894,10 +894,13 @@ Parameters:
"name": "John Smith", "name": "John Smith",
"state": "active", "state": "active",
"created_at": "2012-05-23T08:00:58Z", "created_at": "2012-05-23T08:00:58Z",
"access_level": 40 "access_level": 40,
"expires_at": null
} }
``` ```
>**Note:** The expiration date feature is not released yet.
### Add project team member ### Add project team member
Adds a user to a project team. This is an idempotent method and can be called multiple times Adds a user to a project team. This is an idempotent method and can be called multiple times
...@@ -913,6 +916,9 @@ Parameters: ...@@ -913,6 +916,9 @@ Parameters:
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project - `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
- `user_id` (required) - The ID of a user to add - `user_id` (required) - The ID of a user to add
- `access_level` (required) - Project access level - `access_level` (required) - Project access level
- `expires_at` (optional) - Date string in the format YEAR-MONTH-DAY
>**Note:** Setting the expiration date is not released yet.
### Edit project team member ### Edit project team member
...@@ -927,6 +933,9 @@ Parameters: ...@@ -927,6 +933,9 @@ Parameters:
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project - `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
- `user_id` (required) - The ID of a team member - `user_id` (required) - The ID of a team member
- `access_level` (required) - Project access level - `access_level` (required) - Project access level
- `expires_at` (optional) - Date string in the format YEAR-MONTH-DAY
>**Note:** Setting the expiration date is not released yet.
### Remove project team member ### Remove project team member
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment