ClientId
Overview
The ClientId
property of the Account
class is used to store and retrieve the Client Id associated with the account. This key is typically used for authentication when making API requests on behalf of the account.
Syntax
vba
' To get the Client Id
Account.ClientId
' To set the Client Id
Account.ClientId = "your_client_id_here"
Return Value
When getting the ClientId
, it returns a String
that represents the Client Id of the account.
Example
This example demonstrates how to set and retrieve the Client Id for an account to ensure it's properly stored:
vba
Sub UpdateAndDisplayClientId(acc As Account)
' Set the client id for the account
acc.ClientId = "12345-abcde-67890-fghij"
' Retrieve and display the client id
MsgBox "The Client Id for the account is: " & acc.ClientId, vbInformation
End Sub