Delete a buddy
Learn how to remove buddies from your friend list.
Read time 1 minuteLast updated 20 hours ago
After a user signs in, if they want to delete a buddy, the game must send a vx_account_buddy_delete request. The following code displays an example of this process with the sample issuer key ''MyIssuer":
vx_req_account_buddy_delete req;vx_req_account_buddy_delete_create(&req);req->account_handle = vx_strdup(".MyIssuer.mytestaccountname.");req->buddy_uri = vx_strdup(“sip:MyIssuer.mybuddy.@mt1s.vivox.com”);vx_issue_request3(&req->base, &request_count);