Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/async_quick_start.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ Set your credentials by copying the environment template or exporting them direc
# Option 2: Export directly to your shell
export IMEDNET_API_KEY="your_api_key"
export IMEDNET_SECURITY_KEY="your_security_key"
# Optional: Custom base URL for the API endpoint
# export IMEDNET_BASE_URL="https://edc.prod.imednetapi.com"

List studies asynchronously and poll a job:

Expand Down
2 changes: 2 additions & 0 deletions docs/quick_start.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ Set your credentials by copying the environment template or exporting them direc
# Option 2: Export directly to your shell
export IMEDNET_API_KEY="your_api_key"
export IMEDNET_SECURITY_KEY="your_security_key"
# Optional: Custom base URL for the API endpoint
# export IMEDNET_BASE_URL="https://edc.prod.imednetapi.com"

Enable structured logging and list studies:

Expand Down
2 changes: 2 additions & 0 deletions examples/async_quick_start.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
# Or export directly:
export IMEDNET_API_KEY="your_api_key"
export IMEDNET_SECURITY_KEY="your_security_key"
# Optional: Custom base URL for the API endpoint
# export IMEDNET_BASE_URL="https://edc.prod.imednetapi.com"
poetry run python examples/async_quick_start.py
"""

Expand Down
4 changes: 4 additions & 0 deletions examples/build_form_payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

Usage:
cp .env.example .env
# Or export directly:
# export IMEDNET_API_KEY="your_api_key"
# export IMEDNET_SECURITY_KEY="your_security_key"
# export IMEDNET_BASE_URL="https://edc.prod.imednetapi.com"

# Headless Mode (CLI)
poetry run python examples/build_form_payload.py \
Expand Down
2 changes: 2 additions & 0 deletions examples/quick_start.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
# Or export directly:
export IMEDNET_API_KEY="your_api_key"
export IMEDNET_SECURITY_KEY="your_security_key"
# Optional: Custom base URL for the API endpoint
# export IMEDNET_BASE_URL="https://edc.prod.imednetapi.com"
poetry run python examples/quick_start.py
"""

Expand Down
Loading