← back to Dw Signup Fulfillment
claim-kelly.sh
10 lines
#!/usr/bin/env bash
# Step 2 for TK-10830 — send Kelly's verify letter via the LIVE service /claim.
# Run AFTER step 1 (customer exists) so /claim resolves her customerId and the link works.
# Run as Steve: ! bash ~/Projects/dw-signup-fulfillment/claim-kelly.sh
set -euo pipefail
curl -s -X POST 'https://signup.designerwallcoverings.com/claim' \
-H 'Content-Type: application/json' \
--data '{"email":"kcyounge@gmail.com","first_name":"Kelly"}'
echo