Skip to content

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

vba
' To get the API key
Account.ApiKey

' To set the API key
Account.ApiKey = "your_api_key_here"

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