#!/bin/bash # Uses vault cache for fast token retrieval SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" source "${SCRIPT_DIR}/../vault-env.sh" NOCODB_TOKEN=$(vaul…ken) if [ -z "$NOCODB_TOKEN" ]; then echo "Error: Could not retrieve NocoDB token" exit 1 fi # Get vault token -d '{"role_id":"75d2dcfb-9c65-7f60-59b4-eee8c7f8dc0e","secret_id":"6202b465-2f25-547c-ec07-f47cfc4dda3e"}' \ # Get nocodb token echo "Token: ${NOCODB_TOKEN:0:20}..." # First get the table to find column IDs echo "=== Getting table metadata ===" curl -s "http://192.168.25.5:8080/api/v2/meta/tables/mx149yctebfwvys" \ -H "xc-token: $NOCODB_TOKEN" | jq '.columns[] | select(.column_name == "type") | {id, column_name, uidt, dtxp}'