Introduction
DOTS Usage Reports is a publicly available XML web service with several methods to monitor your transaction usage on your account to maximize your subscription and avoid costly overages number.
Usage Reports is accessible over three protocols: HTTP GET, HTTP POST, and SOAP over HTTP POST. Most programming languages have built-in classes to access web services over SOAP, but you may access the service via any of these three methods.
Developer Guide Map
- Operations
This section lists the DOTS Usage Report operations and goes into the details behind the inputs and outputs.
Operations:- GetDOTSTransactionDetailsByDateRange (Recommended Operation)
- GetDOTSTransactionByDay
- GetDOTSTransactionByDateRange
- Errors
This section reflects details on the error outputs that can happen with the service. - Code Snippets and Sample Code
Here you’ll find code snippets for various programming languages and frameworks along with links to our sample code page on the web site. - Frequently Asked Questions
This is a list of some of the questions we hear more often that you can reference and get answers on right away.
Integration Basics
Integrating Usage Reports into your application should be easy and straightforward. If you are using a common platform, such as asp, vb, C# .NET, PHP and others, Service Objects may already have sample code built that you can use:
UR – Code Snippets and Sample Code
However, if you are using a common platform that does not already have sample code, you can ask Service Objects to build an example for you. Email support@serviceobjects.com for more details.
Web Service Structure:
Web services provide a standard interface to encapsulate tricky business logic. They allow simple integration of applications via the web. Service Objects has followed web services best practices and come up with some of its own standards to ensure that its web services are as easy to integrate and as accessible as possible.
The host path, or physical location of the web service is here:
https://trial.serviceobjects.com/ur/usagereports.asmx
The location of the WSDL, or Web Service Definition Language document, is here:
https://trial.serviceobjects.com/ur/usagereports.asmx?WSDL
Important Note!
- SOAP is done via POST, only with special XML markup in the post-body.
The WSDL is an XML document that defines the interaction web service, meaning its inputs, outputs, operations, and the like. Most likely, you will have another tool read this WSDL and make the operations available to you in your application via some type of proxy class. Whenever your utilities or IDE asks for a WSDL path, you can provide this one. Every web service has operations that it offers to subscribers. These operations, also called methods, contain different functionality and return different outputs.