InformationTitleget-sms-sent-countURL Name44001982270-get-sms-sent-countAnswerRetrieves total number of SMS sent in a give timeframe.ParameterDescriptionRequiredclient_idThe ID of the clientThis parameter is only used by resellers who want to get the sms sent of their clientNOstartA date to start the report fromMust be in ISO8601 format YYYY-MM-DD HH:MM:SS utilising UTC Timezone. Eg. 2020-04-27 06:00:00start and end date must be within 7 daysIf start and end date not supplied will get everything from last 24 hrs only.NOendA date to end the report atMust be in ISO8601 format YYYY-MM-DD HH:MM:SS utilising UTC Timezone. Eg. 2020-04-27 06:00:00start and end date must be within 7 daysIf start and end date not supplied will get everything from last 24 hrs only.NOExamplecurl --location --request POST 'https://api.transmitsms.com/get-sms-sent-count.json'; \ --data-urlencode 'start=2020-07-23' \ --data-urlencode 'end=2020-07-30'curl --location --request POST 'https://api.transmitsms.com/get-sms-sent-count.json'; \ --form 'start=2020-08-01' \ --form 'end=2020-08-08' \ --form 'client_id=100136'JSON Response{ "count": 6, "error": { "code": "SUCCESS", "description": "OK" } }XML Response<?xml version="1.0"?> <response> <count>1</count> <error> <code>SUCCESS</code> <description>OK</description> </error> </response>