All URIs are relative to /api/v2
| Method | HTTP request | Description |
|---|---|---|
| deleteMember | DELETE /members/{memberId} | Delete a team member by ID. |
| getMe | GET /members/me | Get the current team member associated with the token |
| getMember | GET /members/{memberId} | Get a single team member by ID. |
| getMembers | GET /members | Returns a list of all members in the account. |
| patchMember | PATCH /members/{memberId} | Modify a team member by ID. |
| postMembers | POST /members | Invite new members. |
Delete a team member by ID.
deleteMember memberId=value| Name | Type | Description | Notes |
|---|---|---|---|
| memberId | string | The member ID. |
(empty response body)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Get the current team member associated with the token
getMeThis endpoint does not need any parameter.
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Get a single team member by ID.
getMember memberId=value| Name | Type | Description | Notes |
|---|---|---|---|
| memberId | string | The member ID. |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Returns a list of all members in the account.
getMembers limit=value offset=value filter=value sort=value| Name | Type | Description | Notes |
|---|---|---|---|
| limit | integer | The number of objects to return. Defaults to -1, which returns everything. | [optional] |
| offset | integer | Where to start in the list. This is for use with pagination. For example, an offset of 10 would skip the first 10 items and then return the next limit items. | [optional] |
| filter | string | A comma-separated list of filters. Each filter is of the form field:value. | [optional] |
| sort | string | A comma-separated list of fields to sort by. A field prefixed by a - will be sorted in descending order. | [optional] |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Modify a team member by ID.
patchMember memberId=value| Name | Type | Description | Notes |
|---|---|---|---|
| memberId | string | The member ID. | |
| patchDelta | array[PatchOperation] | Requires a JSON Patch representation of the desired changes to the project. 'http://jsonpatch.com/' |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
Invite new members.
postMembers| Name | Type | Description | Notes |
|---|---|---|---|
| membersBody | array[MembersBody] | New members to invite. |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]