Skip to main content

Walmart Connect Advertising Support Cases

CI PyPI Python 3.13+ License: MIT

CLI for reading and filing Walmart Connect advertising support cases without driving a browser.

The Advertising Help portal is a Salesforce Experience Cloud site with no public API. Every click in its UI is one POST to /s/sfsites/aura naming an @AuraEnabled Apex method, so the flow is scriptable — which matters, because submitting a case body through a headless browser is slow and, in some environments, unreliable enough to leave you unsure whether a case was actually filed.

Status

Working end to end: authentication, listing and reading cases, replying, attaching files, closing, and filing new cases. Each Aura payload was captured from the portal UI and verified against a real case, so treat behaviour outside the documented commands as unmapped rather than unsupported.

Requirements

  • Python 3.13+, or uv
  • A Walmart Advertising Help portal account (the Partners → Help Site login)

Quick start

There is nothing to install — uvx fetches and runs it:

mkdir -p ~/.config/walmart-support
cp config.example.json ~/.config/walmart-support/config.json
$EDITOR ~/.config/walmart-support/config.json

uvx walmart-support auth check
uvx walmart-support cases list --status "need info"
uvx walmart-support cases get 15957474
uvx walmart-support cases replies 15957474 --from-walmart

uvx walmart-support cases create \
  --platform display \
  --category "API Support" --issue "Endpoint-specific problem" \
  --subject "Display API: ..." --advertisers "241727, 244985" \
  --description-file ./body.txt                # prints the payload
uvx walmart-support cases create ... --submit   # actually files it

# where the --category and --issue names come from
uvx walmart-support categories list --platform sponsored-search

Reaching for it daily, or working offline? uv tool install walmart-support puts it on PATH and starts faster; walmart-support --version reports which build you are on either way. Inside a clone of this repo, use uv run walmart-support ... to exercise your working tree.

Replying and attaching

cases reply posts a comment on an existing case, and cases attach uploads files to one:

walmart-support cases reply 15957474 --message-file answer.txt
walmart-support cases attach 15957474 ./har.json ./adgroup.json

Neither is gated behind a confirmation flag, unlike cases create: they act on a case you already own, with no category mapping to get wrong. create files a new record into the support queue, which is the thing worth a second look.

Both are writes, so do not wrap them in a retry loop. A network error after the write lands looks identical to one before it, and retrying uploads the file or posts the comment twice — the portal has no idempotency key.

Deletion is asymmetric and this bites: an upload returns a ContentVersion id (068…), while the portal's delete actions want the ContentDocument id (069…) and silently do nothing when handed the other. The 069 ids are recoverable from a case's detail payload; attachments.document_ids() extracts them.

Attaching while filing is not supported yet: openCase accepts a documentId list, but saveChunk requires a parentId and the case does not exist yet, so it is unclear what the portal passes at that point.

Filing a case

cases create prints the exact openCase payload and files nothing unless --submit is given. That default is deliberate: a case goes to Walmart's support queue, and a mis-mapped category files a real but misrouted one.

Categories are resolved by name against the portal's own dropdown data rather than hardcoded, so categories list shows exactly what the UI offers and both the UI label ("API Support") and the wizard's internal name ("API") match.

--platform covers Display and Sponsored Search; the portal collapses Search onto its "Sponsored Products" ad unit, which is why a Search case shows Sponsored Products as its platform. Sponsored Brands and Videos are accepted but the portal publishes no categories for them on a partner account, and the error says so.

openCase returns the new case's number, and the whole path is verified end to end — filed, replied to and closed. Three things had to be right, none of which the method signature revealed:

  • additionalFieldsString is a JSON list of {title, value} objects, not an object. Apex deserializes it into a List and names any unexpected key.
  • partnershipType/partnershipId must be empty. Partnership__c is a lookup to a Partnership record for supplier and seller channels, so an account id there fails the insert with FIELD_INTEGRITY_EXCEPTION.
  • Category routing comes from the resolved level-1/level-2 pair, and a filed case reports API-AdCases / Endpoint-specific problem back.

Known defect: the portal resolves additional fields loosely against the title we send. On the first CLI-filed case, Advertiser Account Name and Advertisers Affected collided on their shared prefix and the account name was stored under the advertisers field, dropping the ids. The colliding field is no longer sent, which should fix it, but that is unconfirmed until the next filing — and the wrapper evidently carries an identifier beyond title/value (its deserializer also accepts fieldName).

Either way, put anything that matters in the description body: it is stored verbatim, whereas these fields are not reliably addressable.

Closing and replying

walmart-support cases reply 15971149 --message-file answer.txt
walmart-support cases close 15971149   # New -> Closed

Sessions

Each invocation is its own process, so session cookies are cached in $XDG_CACHE_HOME/walmart-support/session.json (mode 0600) and reused until the portal rejects them. Without that, every command would pay a full login — four requests and a Salesforce login event before doing any work; with it, a warm command is roughly twice as fast and logs in only when it must.

A session that dies mid-command is retried once from a clean login, because Salesforce reports an invalid session in the middle of a request rather than up front. walmart-support auth logout discards the cached session.

Configuration

~/.config/walmart-support/config.json:

Key Required Description
base_url no Portal origin. Defaults to https://advertisinghelp.walmart.com.
username yes Portal login email.
password yes Portal password.
timeout no Per-request timeout in seconds (default 60).

Every key can be overridden by an environment variable — WALMART_SUPPORT_USERNAME, WALMART_SUPPORT_PASSWORD, WALMART_SUPPORT_BASE_URL, WALMART_SUPPORT_TIMEOUT — so CI needs no file on disk.

Credentials are the only way in, deliberately. A session cookie cannot be configured by hand: Salesforce sid cookies are session-scoped, expire on their own, and cannot renew themselves, so a configured one becomes a stale secret that fails in a way the tool can do nothing about. Sessions are managed by the cache below instead.

Reading a case

cases list is backed by one action that returns every case at once, but it abbreviates subject and description — the trailing ... comes from Walmart. cases get uses the detail action instead, which returns the full text plus status, priority, category and the submitted form fields.

Searching

cases list --query filters on the text the list action returns — and that text is abbreviated: subjects are cut to roughly 46 characters, and some cases carry almost no description at all. So a plain --query can miss a case whose real body contains the term.

--deep re-reads each candidate's full text and its replies instead, at one request per candidate:

# finds nothing: the term sits past where the list truncates the subject
walmart-support cases list --query "targeting of a LIVE ad group"

# finds both cases
walmart-support cases list --query "targeting of a LIVE ad group" --since 2026-08-01 --deep

Because it fans out, --deep refuses to run on more candidates than its cap (25) and asks you to narrow with --status/--since/--limit rather than firing a request per case in the account.

--limit on its own is handed to the portal as a SOQL LIMIT. Combined with a filter it stays client-side, since the server would otherwise apply it before filtering and return matches from an arbitrary slice.

cases replies shows the case conversation, flattened from the HTML the portal stores, with each message attributed to us or WALMART:

walmart-support cases replies 15957474                  # whole thread
walmart-support cases replies 15957474 --from-walmart   # skip our own posts
walmart-support cases replies 15957474 --latest 1       # just the newest

Support's acknowledgement mails quote the entire case body back, and later replies quote the ones before them, so an unfiltered thread is mostly repetition of what you already sent — --from-walmart --latest 1 is usually what you want.

Claude Code plugin

The repo doubles as a Claude Code plugin, so the workflow knowledge travels with the CLI instead of living in one person's ~/.claude:

/plugin marketplace add alyiox/walmart-support
/plugin install walmart-support@walmart-support

That installs a skill covering the parts the --help output cannot express — that --deep costs one request per case, that support's replies quote the whole thread back, that cases create files nothing without --submit, and that cases close is one-way. The plugin does not install the CLI; walmart-support --version tells you whether you still need to.

How it works

GET  /s/contact                     scrape the Aura context (fwuid, apck, lrmc, markup hash)
POST /s/sfsites/aura?r=N&...login   authenticate via LightningLoginFormController
POST /s/sfsites/aura?r=N&other....  call @AuraEnabled Apex methods through ApexActionController

Aura rejects any call whose framework context does not match the deployed build, and that context rotates with every Salesforce release, so it is scraped on each run and never hardcoded. All of this lives in aura.py; when Walmart's contract shifts, that is the one module to re-capture against.

Development

uv sync --group dev
uv run ruff check src/ tests/
uv run ruff format --check src/ tests/
uv run pyright
uv run pytest tests/ -v

Tests are offline: they exercise recorded page shapes and Aura envelopes through httpx.MockTransport.

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

walmart_support-0.1.0.tar.gz (47.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

walmart_support-0.1.0-py3-none-any.whl (30.5 kB view details)

Uploaded Python 3

File details

Details for the file walmart_support-0.1.0.tar.gz.

File metadata

  • Download URL: walmart_support-0.1.0.tar.gz
  • Upload date:
  • Size: 47.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for walmart_support-0.1.0.tar.gz
Algorithm Hash digest
SHA256 f9204c73b06c5991abcfa49a6405dc592580878224f280c32d2109f6830ba347
MD5 48af02ead582f90f1e95e89f27917097
BLAKE2b-256 36cc63ea8eb92866b88aa9579cef3446a7170620d16e73b02daa09e8f36426bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for walmart_support-0.1.0.tar.gz:

Publisher: ci.yml on alyiox/walmart-support

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file walmart_support-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: walmart_support-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 30.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for walmart_support-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 92463c3537010a7ed790aa52a7ea6a83f7c989f1471d4f698c146564ca35898d
MD5 27a47e705e2f815ac9473d3f01a90334
BLAKE2b-256 4f39c5308b3dde2754be1645a221bcd8c47a9cf3e3752d1720e2897ca2529bba

See more details on using hashes here.

Provenance

The following attestation bundles were made for walmart_support-0.1.0-py3-none-any.whl:

Publisher: ci.yml on alyiox/walmart-support

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.3.0

2 files

0.2.0

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

This release

0.1.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page