Last active
August 29, 2015 14:01
-
-
Save acapps/668f24107a0bfc6092bc to your computer and use it in GitHub Desktop.
Example cURL statement for retrieving contact count for Zipwhip account using contact/list.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$curl http://api.zipwhip.com/contact/list | |
-d session=[sessionKey] | |
–d pageSize=1 | |
Where pages is the total number of contacts associated with the account. | |
In the example below the account has 89 contacts. | |
Response: | |
{ | |
"total":1, | |
"response":[ | |
{ | |
... | |
}], | |
"page":1, | |
"pages":89, | |
"success":true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment