Invite a profile
This Request is Protected by Authentication
The Invite Profile mutation allows you to send invitations to one or more profiles. This mutation takes a list of Ethereum addresses and a secret as input and sends invitations to the specified addresses.
Request
Invocation
const result = await client.invites.inviteProfile({
invites: ["0x1234567890123456789012345678901234567890"],
secret: "secret",
});
mutation InviteProfile($request: InviteRequest!) {
inviteProfile(request: $request)
}
Response
Returns a Void
.
Updated about 1 month ago