20 lines
539 B
Plaintext
20 lines
539 B
Plaintext
# Xero API Configuration
|
|
|
|
# Required: OAuth2 Bearer token
|
|
XERO_ACCESS_TOKEN=your_access_token_here
|
|
|
|
# Required: Tenant ID (organization ID)
|
|
XERO_TENANT_ID=your_tenant_id_here
|
|
|
|
# Optional: Custom base URL (default: https://api.xero.com/api.xro/2.0)
|
|
# XERO_BASE_URL=https://api.xero.com/api.xro/2.0
|
|
|
|
# Optional: Request timeout in milliseconds (default: 30000)
|
|
# XERO_TIMEOUT=30000
|
|
|
|
# Optional: Number of retry attempts (default: 3)
|
|
# XERO_RETRY_ATTEMPTS=3
|
|
|
|
# Optional: Retry delay in milliseconds (default: 1000)
|
|
# XERO_RETRY_DELAY_MS=1000
|