System Administration > Configuration > Fabric > Pool Management > VNI Pools

Create a new VNI Pool.

Creates a new VNI pool using the specified VNI pool range. The range
should be non-overlapping with an existing range. If the range in
payload is present or overlaps with an existing range, return code 400
with bad request and an error message is returned mentioning that the
given range overlaps with an existing range.

Request:

Method:
POST
URI Path(s):
/api/v1/pools/vni-pools
Request Headers:
n/a
Query Parameters:
n/a
Request Body:
VniPool+

Example Request:

POST https://<nsx-mgr>/api/v1/pools/vni-pools { "display_name": "VNI-POOL1", "description": "VNI-POOL1 Description", "ranges": [ { "start": 65536, "end": 75000 }, { "start": 5000, "end": 65535 } ] }

Successful Response:

Response Code:
201 Created
Response Headers:
Content-type: application/json
Response Body:
VniPool+

Example Response:

{ "_revision": 0, "id": "5a5f22a8-8293-4212-93df-99286d20e25c", "display_name": "VNI-POOL1", "description": "VNI-POOL1 Description", "resource_type": "VniPool", "ranges": [ { "start": 65536, "end": 75000 }, { "start": 5000, "end": 65535 } ] "_last_modified_user": "admin", "_last_modified_time": 1414691880507, "_create_time": 1414691880507, "_create_user": "admin" }

Required Permissions:

crud

Feature:

profiles_configuration

Additional Errors: