You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 18, 2023. It is now read-only.
Implementation notes
This method is available in both synchronous and asynchronous implementations
Response
Parameter
Description
The data type of the parameter
Id
The unique ID of the chat account.
String
Battery
The percentage of battery charge.
String
Locale
Culture
String
Name
Name of the account.
String
WhatsAppVersion
The version of the installed WhatsApp app on the account owner's phone.
String
Device
Information about the phone number of the account owner.
DeviceCharacteristic
Parameters of the DeviceCharacteristic
Parameter
Description
The data type of the parameter
Model
The phone model of the account holder.
String
Manufacturer
The manufacturer of the account owner's phone number.
String
OsVersion
The version of the operating system on the account owner's phone.
String
Example
usingSystem;usingChatApi.Core.Connect;usingChatApi.Core.Connect.Interfaces;usingChatApi.WA.Account;usingChatApiClient.Properties;namespaceChatApiClient{internalclassProgram{publicstaticIWhatsAppConnectConnect{get;set;}privatestaticvoidMain(){// put your chat-api's dataConnect=newWhatsAppConnect(WhatsApp_Server,WhatsApp_Instance,WhatsApp_Token);IAccountOperationaccountOperation=newAccountOperation(connect);varchatApiResponse=accountOperation.GetAccountInformation();if(!chatApiResponse.IsSuccess)throwchatApiResponse.Exception!;varresponse=chatApiResponse.GetResult();Console.WriteLine(response?.PrintMembers());}}}