Skip to content

Instantly share code, notes, and snippets.

@acapps
Created April 14, 2016 16:52
Show Gist options
  • Save acapps/40d605491be3146f2f07c9a6c8741921 to your computer and use it in GitHub Desktop.
Save acapps/40d605491be3146f2f07c9a6c8741921 to your computer and use it in GitHub Desktop.

POST /user/save Http/1.1

Host: https://api.zipwhip.com

Parameters:

session - Required for authentication.

firstName - User's first name.

lastName - User's last name.

These two parameters are joined to create the display name

Examples:

Setting a new name:

$curl -X POST https://api.zipwhip.com/user/save \
  -d session={session}
  --data-urlencode firstName='Alan'
  --data-urlencode lastName='Capps'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment