ReceivedPartyInvitation
Represents a received party invitation.Attributes
The client instance.
The party the invitation belongs to.
The net_cl received by the sending client.
The friend that invited you to the party.
The UTC time this invite was created at.
Methods
accept
The party the client joined by accepting the invitation.
Forbidden- You attempted to join a private party you’ve been kicked from.PartyError- The client’s net_cl is not compatible with the received net_cl.HTTPException- Something went wrong when accepting the invitation.
decline
HTTPException- Something went wrong when declining the invitation.
SentPartyInvitation
Represents a sent party invitation.Attributes
The client instance.
The party the invitation belongs to.
The party member that sent the invite.
The user that the invite was sent to.
The UTC time this invite was created at.
Methods
cancel
<user>'s party is private.
Raises:
Forbidden- Attempted to cancel an invite not sent by the client.HTTPException- Something went wrong while requesting to cancel the invite.
resend
Forbidden- Attempted to resend an invite not sent by the client.HTTPException- Something went wrong while requesting to resend the invite.
PartyJoinConfirmation
Represents a join confirmation.Attributes
The client instance.
The party the user wants to join.
The user who requested to join the party.
The UTC time of when the join confirmation was received.
Methods
confirm
This call does not guarantee that the player will end up in the client’s party. Always listen to the
event_party_member_join() event to ensure that the player in fact joined.HTTPException- Something went wrong when confirming this user.
reject
HTTPException- Something went wrong when rejecting this user.
PartyJoinRequest
Represents a party join request. These requests are in most cases only received when the bot’s party privacy is set to private.There is currently no way to reject a join request. The official Fortnite client does this by simply ignoring the request and waiting for it to expire.
Attributes
The client instance.
The party the user wants to join.
The friend who requested to join the party.
The UTC timestamp of when this join request was created.
The UTC timestamp of when this join request will expire. This should always be one minute after its creation.
Methods
accept
Object representing the sent party invitation.
PartyError- User is already in your party or the party is full.HTTPException- An error occurred while requesting.