Skip to content

Latest commit

 

History

History
65 lines (46 loc) · 1.33 KB

UtilsApi.md

File metadata and controls

65 lines (46 loc) · 1.33 KB

IO.Swagger.Api.UtilsApi

All URIs are relative to https://api.thesmsworks.co.uk/v1

Method HTTP request Description
Test GET /utils/test

Test

TestResponse Test ()

Returns the customer ID to the caller

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class TestExample
    {
        public void main()
        {
            var apiInstance = new UtilsApi();

            try
            {
                TestResponse result = apiInstance.Test();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling UtilsApi.Test: " + e.Message );
            }
        }
    }
}

Parameters

This endpoint does not need any parameter.

Return type

TestResponse

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json;charset=UTF-8

[Back to top] [Back to API list] [Back to Model list] [Back to README]