All URIs are relative to https://api.thesmsworks.co.uk/v1
Method | HTTP request | Description |
---|---|---|
Credits | GET /credits/balance |
CreditsResponse Credits ()
Returns the number of credits currently available on the account
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class CreditsExample
{
public void main()
{
var apiInstance = new CreditsApi();
try
{
CreditsResponse result = apiInstance.Credits();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling CreditsApi.Credits: " + e.Message );
}
}
}
}
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json
- Accept: application/json;charset=UTF-8
[Back to top] [Back to API list] [Back to Model list] [Back to README]