Delete custom CA: Request

Prev Next

To remove a custom CA certificate chain, send the following request:

DELETE https://<IA_IP_address>:<port_number>/config/v1/x509/ca/cert

Note

To use this request, your user account must have sudo access.

Required headers:

Cookie: px=<token>
X-Username: <user>
X-Role: <role>

Options

  • IA_IP_address—The IP address of the NDR appliance running the NDR API.

  • port_number—The port number of the NDR appliance running the NDR API.

  • token—This token authenticates the session. By default, the session times out after 24 hours.

  • user—The user ID.

  • role—The user's role.

Example

DELETE https://xxx.xxx.xxx.xxx:443/config/v1/x509/ca/cert

Required headers:

Cookie: px=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
X-Username: wheel
X-Role: wheel

Delete custom CA: Response

HTTP/1.1 [Response Code] [Response Message]				
Server: [Server]
Date: [Date]				
Response fields
  • Response code—A standard HTTP response code.

    • 200—Request successful; the CA certificate chain was deleted.

  • Response message—A standard HTTP response message.

    • OK—Request successful; the CA certificate chain was deleted.

  • Server—The server being used.

  • Date—Standard HTML date format.

Example
HTTP/1.1 200 OK
Server: nginx
Date: Fri, 16 Aug 2019 13:10:49 GMT

cURL code sample: Delete custom CA

curl http://xxx.xxx.xxx.xxx:8085/config/v1/x509/ca/cert 
-H "X-Username: wheel" -H "X-Role: wheel" -X DELETE

This cURL sample includes the following options:

  • -X DELETE—Specifies using the DELETE method.

  • --cookie "px=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"—This option specifies the authentication token for this session.

  • -H "X-Username: wheel"—User name.

  • -H "X-Role: wheel"—User role.

  • http://xxx.xxx.xxx.xxx:8085/config/v1/x509/ca/cert—The certificate request URL. Replace xxx.xxx.xxx.xxx with the IP address of your NDR appliance.

Results

This example deletes a custom CA certificate chain.