We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Based on: https://github.com/mattermost/mattermost-api-reference/tree/519eaaf96ce39c74123d63eae36d47a2dd0afccf If missing / wrong api found, create issues to fix it.
#getAudits
#switchAccountType
GET /channels/{channel_id}/timezones
PUT /channels/{channel_id}/patch
GET /teams/{team_id}/channels/autocomplete
GET /teams/{team_id}/channels/search_autocomplete
#addChannelMembers
post_root_id
PUT /channels/{channel_id}/members/{user_id}/schemeRoles
PUT /channels/{channel_id}/scheme
#getEmojiList
sort
#uploadFile
client_ids
channel_id
filename
POST /file/s3_test
GET /config/environment
PUT /oauth/apps/{app_id}
#searchPosts
time_zone_offset
include_deleted_channels
POST /posts/{post_id}/actions/{action_id}
#updatePost(String, Post)
#updatePost(Post)
POST /posts/ids/reactions
#{upload,remove}SamlPrivateCertificate
#{upload,remove}SamlPrivateKey
#getUserStatus
PUT /teams/{team_id}/members/{user_id}/schemeRoles
DELETE /teams/invites/email
PUT /teams/{team_id}/scheme
#getTeamIcon
TeamsApiTest#addUserToTeamFromInvite
GET /users/{user_id}/teams/unread
UserApi#getTeamUnreadForUser
#searchUsers
#autocompleteUsers
#autocompleteUsersInChannel
#autocompleteUsersInTeam
limit
GET /users/stats
GET /users/{user_id}/image/default
PUT /users/{user_id}/auth
POST /users/{user_id}terms_of_service
GET /users/{user_id}terms_of_service
#getMe
#getSessions
#getUser
#getUserAudits
#getUserByEmail
#getUserByUsername
#getUsers
#getUsersInChannel
#getUsersInTeam
#getUsersNotInChannel
#getUsersNotInTeam
#getUsersWithoutTeam
UserApi#resetPassword
token
code
GET /users/{user_id}/audits
page
per_page
The text was updated successfully, but these errors were encountered:
All sub tasks are converted to issues.
Sorry, something went wrong.
maruTA-bis5
No branches or pull requests
Based on: https://github.com/mattermost/mattermost-api-reference/tree/519eaaf96ce39c74123d63eae36d47a2dd0afccf
If missing / wrong api found, create issues to fix it.
Note
Check list
#getAudits
-> Remove needless overloads that has etag parameter #180#switchAccountType
in users section.GET /channels/{channel_id}/timezones
-> Implement: GET /channels/{channel_id}/timezones #107PUT /channels/{channel_id}/patch
-> Implement: PUT /channels/{channel_id}/patch #181GET /teams/{team_id}/channels/autocomplete
= Implement: Channel Autocomplete APIs #182GET /teams/{team_id}/channels/search_autocomplete
-> Implement: Channel Autocomplete APIs #182#addChannelMembers
:post_root_id
parameter-> ChannelApi#addChannelMembers:post_root_id
parameter support #183PUT /channels/{channel_id}/members/{user_id}/schemeRoles
-> Implement: Roles API #201PUT /channels/{channel_id}/scheme
-> Implement: Schemes API #202#getEmojiList
:sort
parameter -> EmojiApi#getEmojiList:sort
parameter support #184#uploadFile
:client_ids
,channel_id
(in query), andfilename
(in query) parameters -> FilesApi#uploadFile: more parameter support #185POST /file/s3_test
-> Implement: POST /file/s3_test #186GET /config/environment
-> Implement: GET /config/environment #187PUT /oauth/apps/{app_id}
-> Implement: PUT /oauth/apps/{app_id} #58#searchPosts
:time_zone_offset
andinclude_deleted_channels
parameters. -> PostApi#searchPosts: more parameters support #188POST /posts/{post_id}/actions/{action_id}
-> Implement: Post Actions #110#updatePost(String, Post)
API to removal. Use#updatePost(Post)
instead. -> Make PostApi#updatePost(String, Post) Deprecate #189POST /posts/ids/reactions
-> Add new API for 5.8 #156#{upload,remove}SamlPrivateCertificate
to#{upload,remove}SamlPrivateKey
-> Rename API: SamlApi#{upload,remove}SamlPrivateCertificat to ~PrivateKey #190#getUserStatus
-> Remove needless overloads that has etag parameter #180PUT /teams/{team_id}/members/{user_id}/schemeRoles
-> Implement: Roles API #201DELETE /teams/invites/email
-> Implement: DELETE /teams/invites/email #191PUT /teams/{team_id}/scheme
-> Implement: Schemes API #202#getTeamIcon
-> Add etag parameter for TeamApi#getTeamIcon #192TeamsApiTest#addUserToTeamFromInvite
is marked ignore and may be invalid api call. -> Test: TeamsApi#addUserToTeamFromInvite #193GET /users/{user_id}/teams/unread
is defined asUserApi#getTeamUnreadForUser
. Move to TeamApi. -> Move UserApi#getTeamUnreadForUser method declaration into TeamApi #194#searchUsers
,#autocompleteUsers
,#autocompleteUsersInChannel
,#autocompleteUsersInTeam
:limit
parameter -> User Search Apis: add limit parameter support #195GET /users/stats
-> Implement: GET /users/stats #196GET /users/{user_id}/image/default
-> Implement: GET /users/{user_id}/image/default #197PUT /users/{user_id}/auth
-> Implement: PUT /users/{user_id}/auth #70POST /users/{user_id}terms_of_service
-> Implement: Service Terms API #203GET /users/{user_id}terms_of_service
-> Implement: Service Terms API #203#autocompleteUsers
,#autocompleteUsersInChannel
,#autocompleteUsersInTeam
,#getMe
,#getSessions
,#getUser
,#getUserAudits
,#getUserByEmail
,#getUserByUsername
,#getUsers
,#getUsersInChannel
.#getUsersInTeam
,#getUsersNotInChannel
,#getUsersNotInTeam
, and#getUsersWithoutTeam
. -> Remove needless overloads that has etag parameter #180UserApi#resetPassword
:token
tocode
-> UserApi#resetPassword: rename parametertoken
tocode
#198GET /users/{user_id}/audits
acceptpage
/per_page
parameters, but not explained in api documentation (this is document's bug).The text was updated successfully, but these errors were encountered: