CLAUDE CODE MARKETPLACES
Skillsflight505/skill-forgeveeva-deploy-integration

veeva-deploy-integration

Veeva Vault deploy integration for REST API and clinical operations.

npx skills add https://github.com/flight505/skill-forge --skill veeva-deploy-integration
SKILL.md

Veeva Vault Deploy Integration

Overview

Guidance for deploy integration with Veeva Vault REST API, VQL queries, and VAPIL Java SDK.

Instructions

Key Vault API Concepts

  • Authentication: Session-based (username/password or OAuth 2.0)
  • Base URL: https://{vault}.veevavault.com/api/v24.1/
  • VQL: SQL-like query language for Vault data
  • VAPIL: Open-source Java SDK covering all Platform APIs
  • Lifecycle: Documents flow through states (Draft > In Review > Approved)

Common VQL Patterns

-- List documents by type
SELECT id, name__v FROM documents WHERE type__v = 'Trial Document'

-- Find objects
SELECT id, name__v FROM site__v WHERE status__v = 'active__v'

-- Join related objects
SELECT id, name__v, study__vr.name__v FROM study_country__v

Error Handling

ErrorCauseSolution
INVALID_SESSION_IDSession expiredRe-authenticate
INSUFFICIENT_ACCESSMissing permissionsCheck security profile
INVALID_DATABad VQL or field nameValidate against metadata
OPERATION_NOT_ALLOWEDLifecycle state conflictCheck document state

Resources

Next Steps

See related Veeva Vault skills for more patterns.

Installs0
GitHub Stars0
LanguagePython
AddedJun 5, 2026
View on GitHub