RCS Message Summary REST API
RCS Message Summary REST API for SMSGatewayCenter APIs
RCS Message Summary REST API
Use the Message Summary REST API to fetch aggregated RCS message counts for your account over HTTP. Ideal for dashboards and daily reconciliation. This endpoint accepts GET requests and returns JSON.
API Endpoint
https://unify.smsgateway.center/rest/rcs/v1/summaryLegacy alias without v1 in the path is also supported: /rest/rcs/summary
Authentication
Send your account userid with either password as a request parameter, or your account API key in the apikey request header. userid is required in both cases. Password is not required when the apikey header is used. RCS product and RCS API access must be enabled on your account. Do not publish live usernames or passwords.
| Parameter | Required | Description | Example/Value |
|---|---|---|---|
| Authentication | |||
| userid | Yes | Your SMSGatewayCenter account username. Required even when the apikey header is used. | YourUsername |
| password | Yes* | Your account password. Not required when the apikey header is used. | ********** |
| output | Yes | Response format. Must be json. | json |
| Optional Parameters | |||
| action | Optional | Defaults to list. Only list is supported in v1. | list |
| fromDate | Optional | Start of summary date range. Format YYYY-MM-DD or full date/time. Alias: from. | 2026-07-14 |
| toDate | Optional | End of summary date range. Format YYYY-MM-DD or full date/time. Alias: to. | 2026-07-14 |
| botId | Optional | Filter by numeric RCS bot id. | 3 |
| page | Optional | Page number. Default 1. | 1 |
| limit | Optional | Records per page. Default 50, maximum 200. | 50 |
curl --location 'https://unify.smsgateway.center/rest/rcs/v1/summary?userid=YourUsername&password=xxxxx&output=json&action=list&fromDate=2026-07-14&toDate=2026-07-14&page=1&limit=50'
curl --location --get 'https://unify.smsgateway.center/rest/rcs/v1/summary' \
--header 'apikey: YourApiKey' \
--data-urlencode 'userid=YourUsername' \
--data-urlencode 'output=json' \
--data-urlencode 'action=list' \
--data-urlencode 'botId=3' \
--data-urlencode 'page=1' \
--data-urlencode 'limit=50'
{
"status": "success",
"summaryList": [
{
"botName": "YourBot",
"direction": 1,
"directionLabel": "A2P",
"countryName": "India",
"msgTypeLabel": "RICH",
"total": 3,
"success": 0,
"read": 0,
"failed": 3,
"notSent": 0,
"others": 0,
"refund": 0,
"invalid": 0,
"rcsEnabled": 0,
"clicked": 0,
"summaryTime": 1788373800000,
"summaryTimeFormatted": "2026-09-03 00:00:00"
}
],
"totalRecords": 1,
"page": 1,
"limit": 50,
"fromDate": "2026-09-03 00:00:00",
"toDate": "2026-09-03 23:59:59",
"statusCode": "200",
"reason": "success"
}
{
"status": "error",
"summaryList": [],
"statusCode": "403",
"reason": "RCS API access is not enabled for this account."
}
