vntana-auth

star 0

Get a valid VNTANA X-AUTH-TOKEN for API testing. Use when you need to test VNTANA API calls with curl, verify API request formats, or debug 400/401 errors. Reads credentials from the project's .env file (VNTANA_EMAIL, VNTANA_PASSWORD, VNTANA_ORGANIZATION_UUID).

VNTANA-3D By VNTANA-3D schedule Updated 1/29/2026

name: vntana-auth description: Get a valid VNTANA X-AUTH-TOKEN for API testing. Use when you need to test VNTANA API calls with curl, verify API request formats, or debug 400/401 errors. Reads credentials from the project's .env file (VNTANA_EMAIL, VNTANA_PASSWORD, VNTANA_ORGANIZATION_UUID).

VNTANA Authentication

Get a valid X-AUTH-TOKEN for testing VNTANA API calls.

Get Token

TOKEN=$(/Users/benconway/GitHub/VNTANA-n8n-node/.claude/skills/vntana-auth/scripts/get_token.sh)
echo "Token: $TOKEN"

Use Token with curl

TOKEN=$(/Users/benconway/GitHub/VNTANA-n8n-node/.claude/skills/vntana-auth/scripts/get_token.sh)

curl -X POST "https://api-platform.vntana.com/v1/<endpoint>" \
  -H "Content-Type: application/json" \
  -H "X-AUTH-TOKEN: Bearer $TOKEN" \
  -d '<json-body>'

Environment Variables

Required in .env:

  • VNTANA_EMAIL - Account email
  • VNTANA_PASSWORD - Account password
  • VNTANA_ORGANIZATION_UUID - Organization UUID for token scope

Optional:

Testing UUIDs

The .env file also contains UUIDs for testing:

  • VNTANA_WORKSPACE_UUID - Target workspace for operations
  • VNTANA_PRODUCT_UUID - Test product UUID
  • VNTANA_PIPELINE_UUID - Pipeline for 3D model uploads
Install via CLI
npx skills add https://github.com/VNTANA-3D/vntana-n8n-node --skill vntana-auth
Repository Details
star Stars 0
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator