Check the api reference docs here to know about all available methods

Wapi.go SDK allows you to manage your business account phone numbers with ease. You can manage your business account phone numbers by using the methods and sub-business client available in the SDK. Here are some of the features that you can do with the SDK:

Fetch All Phone Numbers

client.Business.PhoneNumber.FetchAll(manager.FetchPhoneNumberFilters{
    GetSandboxNumbers: false,
})
Check the api reference docs here to know about this method

Fetch Phone Number by ID

client.Business.PhoneNumber.Fetch("<phone_number>")
Check the api reference docs here to know about this method

Generate QR code for Phone Number

client.Business.PhoneNumber.GenerateQrCode("<phone_number>", "This is Wapi.go this side.")
Check the api reference docs here to know about this method

Fetch all QR code for Phone Number

client.Business.PhoneNumber.GetAllQrCodes("<phone_number")
Check the api reference docs here to know about this method

Delete a QR code

client.Business.PhoneNumber.DeleteQrCode("<phone_number", "<qr_code_id>")
Check the api reference docs here to know about this method

Get QR code by Id

client.Business.PhoneNumber.GetQrCodeById("<phone_number", "<qr_code_id>")
Check the api reference docs here to know about this method

Update QR Code

client.Business.PhoneNumber.UpdateQrCode("<phone_number", "<qr_code_id>", "This is Wapi.go this side.")
Check the api reference docs here to know about this method