Create Tenant

Create a tenant with the given parameters

POST https://<NSP Server>:8543/sdn/api/v4/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": "687f0ce1-8dbc-4998-8442-0d00c73f86e8",
    "tenantName": "nspTenant",
    "contactName": "NSP Tenant",
    "phoneNumber": "6135551234",
    "address": "123 Main Street",
    "customerId": 1
  }
}