Quick Start
To successfully complete your integration with us, these are all you need to know.
Base Url
Development: https://apistaging.sendsprint.com
Production: https://live.sendsprint.com
Sample Request
The request body data are formatted as a JSON. We have provided sample API calls for each endpoint. All you need to do is insert your specific parameters, and you can test the requests.
You can also use Postman for your testing of the APIs. Postman is an easy-to-use API development and testing platform. You can explore it for a better understanding.
Sample Response
The response data are formatted as JSON. The content type for responses will always be application/json. Generally, all responses will be in the following format below:
{
"ResponseCode": [string],
"ResponseMessage": [string],
"Data": [object]
}For ResponseCode "00" represents Success, while other codes will have their corresponding failure code.
The ResponseMessage key is a string that will contain a summary of the response. If an error occurs for the request, the reason for the error will be contained therein else the value will mostly be Successful
The Data key is where you want to check for the result of your request. This value here depends on the kind of request made and expected outcome. For instance, a request to get transactions will return a list of transactions.
Last updated