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/v4/tenants

Response:

{
  "status": 0,
  "startRow": 0,
  "endRow": 2,
  "totalRows": 2,
  "data": [
    {
      "id": "0",
      "tenantName": "admin",
      "contactName": null,
      "phoneNumber": null,
      "address": null,
      "customerId": 1
    },
    {
      "id": "687f0ce1-8dbc-4998-8442-0d00c73f86e8",
      "tenantName": "nspTenant",
      "contactName": "NSP Tenant",
      "phoneNumber": "6135551234",
      "address": "123 Main Street",
      "customerId": 1
    }
  ]
}