Get Tenant

Get a list of tenants so that the UUID can be used to create the service for the correct tenant.

GET https://<NSP Server>:8543/sdn/api/v3/tenants

Response:

{
  "status": 0,
  "startRow": 0,
  "endRow": 2,
  "totalRows": 2,
  "data": [
    {
      "id": "0",
      "tenantName": "admin",
      "contactName": null,
      "phoneNumber": null,
      "address": null
    },
    {
      "id": "a08576d9-1368-4d2e-a100-e91279ff57b1",
      "tenantName": "nspTenant",
      "contactName": "NSP Tenant",
      "phoneNumber": "6135551234",
      "address": "123 Main Street"
    }
  ]
}