Create Tenant

Create a tenant with the given parameters

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

Request:

{
  "data": {
    "address": "123 Main Street",
    "contactName": "NSP Tenant",
    "id": "55",
    "phoneNumber": "6135551234",
    "tenantName": "nspTenant"
  }
}

Response:

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