NSX-T Data Center REST API

Associated URIs:

API Description API Path

Collect audit logs from registered manager nodes


This API is executed on a manager node to display audit logs from all nodes
inside the management plane cluster. An audit log collection will be
triggered if the local master audit log is outdated.
POST /api/v1/administration/audit-logs

Update node core dump configuration


Update node configuration for core dump generation and rotation policy
POST /api/v1/transport-nodes/{transport-node-id}/node?action=set_coredump_config
POST /api/v1/cluster/{cluster-node-id}/node?action=set_coredump_config
POST /api/v1/node?action=set_coredump_config

List system core dumps


GET /api/v1/transport-nodes/{transport-node-id}/node/core-dumps
GET /api/v1/cluster/{cluster-node-id}/node/core-dumps
GET /api/v1/node/core-dumps

Delete core dump file


DELETE /api/v1/transport-nodes/{transport-node-id}/node/core-dumps/{file-name}
DELETE /api/v1/cluster/{cluster-node-id}/node/core-dumps/{file-name}
DELETE /api/v1/node/core-dumps/{file-name}

Copy system generated core dump file to a remote file store


Copy system generated core dump file to a remote server. If you use scp or
sftp, you must provide the remote server's SSH fingerprint. See the
NSX-T Administration Guide for information and instructions
about finding the SSH fingerprint.
POST /api/v1/transport-nodes/{transport-node-id}/node/core-dumps/{file-name}?action=copy_to_remote_file
POST /api/v1/cluster/{cluster-node-id}/node/core-dumps/{file-name}?action=copy_to_remote_file
POST /api/v1/node/core-dumps/{file-name}?action=copy_to_remote_file
Additional Links