Enum slack_api::channels::InviteError
[−]
[src]
pub enum InviteError<E: Error> { ChannelNotFound, UserNotFound, CantInviteSelf, NotInChannel, AlreadyInChannel, IsArchived, CantInvite, UraMaxChannels, NotAuthed, InvalidAuth, AccountInactive, UserIsBot, UserIsUltraRestricted, InvalidArgName, InvalidArrayArg, InvalidCharset, InvalidFormData, InvalidPostType, MissingPostType, TeamAddedToOrg, RequestTimeout, MalformedResponse(Error), Unknown(String), Client(E), }
Variants
ChannelNotFound
Value passed for channel was invalid.
UserNotFound
Value passed for user was invalid.
CantInviteSelf
Authenticated user cannot invite themselves to a channel.
NotInChannel
Authenticated user is not in the channel.
AlreadyInChannel
Invited user is already in the channel.
IsArchived
Channel has been archived.
CantInvite
User cannot be invited to this channel.
UraMaxChannels
URA is already in the maximum number of channels.
NotAuthed
No authentication token provided.
InvalidAuth
Invalid authentication token.
AccountInactive
Authentication token is for a deleted user or team.
UserIsBot
This method cannot be called by a bot user.
UserIsUltraRestricted
This method cannot be called by a single channel guest.
InvalidArgName
The method was passed an argument whose name falls outside the bounds of common decency. This includes very long names and names with non-alphanumeric characters other than _. If you get this error, it is typically an indication that you have made a very malformed API call.
InvalidArrayArg
The method was passed a PHP-style array argument (e.g. with a name like foo[7]). These are never valid with the Slack API.
InvalidCharset
The method was called via a POST request, but the charset specified in the Content-Type header was invalid. Valid charset names are: utf-8 iso-8859-1.
InvalidFormData
The method was called via a POST request with Content-Type application/x-www-form-urlencoded or multipart/form-data, but the form data was either missing or syntactically invalid.
InvalidPostType
The method was called via a POST request, but the specified Content-Type was invalid. Valid types are: application/x-www-form-urlencoded multipart/form-data text/plain.
MissingPostType
The method was called via a POST request and included a data payload, but the request did not include a Content-Type header.
TeamAddedToOrg
The team associated with your request is currently undergoing migration to an Enterprise Organization. Web API and other platform operations will be intermittently unavailable until the transition is complete.
RequestTimeout
The method was called via a POST request, but the POST data was either missing or truncated.
MalformedResponse(Error)
The response was not parseable as the expected object
Unknown(String)
The response returned an error that was unknown to the library
Client(E)
The client had an error sending the request to Slack