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