Turns out it was kinda ugly and I had to use:
- cookies
- body
- header
- redirect
curl -b cookies.txt -c cookies.txt -L -v -H "Content-Type:application/x-www-form-urlencoded" --data 'login_fail_url=http://junksample.com/damnitall&login_success_url=http://junksample..com/woopeedoo' 'http://junksample.com/v1/login'
the "-L" portion told curl to follow the 302 redirect that comes back
the "-b cookies.txt -c cookies.txt" portion stored a cookie that came back and then used the cookie when it followed the redirect
the "-H ...." portion was for adding a header
the "--data ...." portion was for specifying the POST body