Method CreateInviteAsync
- Namespace
- DSharpPlus.Entities
- Assembly
- DSharpPlus.dll
CreateInviteAsync(int, int, bool, bool, string, DiscordInviteTargetType?, ulong?, ulong?)
Create a new invite object
public Task<DiscordInvite> CreateInviteAsync(int max_age = 86400, int max_uses = 0, bool temporary = false, bool unique = false, string reason = null, DiscordInviteTargetType? targetType = null, ulong? targetUserId = null, ulong? targetApplicationId = null)
Parameters
max_age
intDuration of invite in seconds before expiry, or 0 for never. Defaults to 86400.
max_uses
intMax number of uses or 0 for unlimited. Defaults to 0
temporary
boolWhether this invite only grants temporary membership. Defaults to false.
unique
boolIf true, don't try to reuse a similar invite (useful for creating many unique one time use invites)
reason
stringReason for audit logs.
targetType
DiscordInviteTargetType?The target type of the invite, for stream and embedded application invites.
targetUserId
ulong?The ID of the target user.
targetApplicationId
ulong?The ID of the target application.
Returns
Exceptions
- UnauthorizedException
Thrown when the client does not have the CreateInstantInvite permission.
- NotFoundException
Thrown when the channel does not exist.
- BadRequestException
Thrown when an invalid parameter was provided.
- ServerErrorException
Thrown when Discord is unable to process the request.