Skip to content

TenantId


Overview

The TenantId property of the Account class is used to store and retrieve the Tenant 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 Tenant Id
Account.TenantId

' To set the Tenant Id
Account.TenantId = "your_tenant_id_here"

Return Value

When getting the TenantId, it returns a String that represents the Tenant Id of the account.

Example

This example demonstrates how to set and retrieve the Tenant Id for an account to ensure it's properly stored:

vba
Sub UpdateAndDisplayTenantId(acc As Account)
    ' Set the tenant id for the account
    acc.TenantId = "12345-abcde-67890-fghij"

    ' Retrieve and display the tenant id
    MsgBox "The Tenant Id for the account is: " & acc.TenantId, vbInformation
End Sub