GET api/System_Status/Get?pageNumber={pageNumber}&pageSize={pageSize}
Retrieves the system status associated with your provider account.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
pageNumber | The page number to get |
Define this parameter in the request URI. |
pageSize | The page size to get |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{ "is_last": true, "systemstatus": [ { "description": "sample string 1", "subject": "sample string 2", "datecreated": "sample string 3", "id": "sample string 4" }, { "description": "sample string 1", "subject": "sample string 2", "datecreated": "sample string 3", "id": "sample string 4" }, { "description": "sample string 1", "subject": "sample string 2", "datecreated": "sample string 3", "id": "sample string 4" } ] }
application/xml, text/xml
Sample:
<system_status_page xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api.Org"> <is_last>true</is_last> <systemstatus> <system_status> <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id> <datecreated>sample string 3</datecreated> <description>sample string 1</description> <id>sample string 4</id> <subject>sample string 2</subject> </system_status> <system_status> <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id> <datecreated>sample string 3</datecreated> <description>sample string 1</description> <id>sample string 4</id> <subject>sample string 2</subject> </system_status> <system_status> <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id> <datecreated>sample string 3</datecreated> <description>sample string 1</description> <id>sample string 4</id> <subject>sample string 2</subject> </system_status> </systemstatus> </system_status_page>