Delete a specific domain by domain Id

delete

/PASService/rest/services/v1/url/domains/{domainId}

Deletes domain for a specific ID.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

204 Response

This section describes the 204 status response for this operation. This response code indicates success with no response body. This operation deletes a specific domain by domain id.
Back to Top

Examples

This example describes how to delete domain for a specific ID.

Example cURL Command

Use the following cURL command to submit a request on the REST resource:

curl -X DELETE \
     -H "Accept: application/json" \
     -H "Content-Type: application/json" \
     -u 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
     -L "http://server:port/PASService/rest/services/v1/url/domains/545B3AB1-E1DD-4C57-8F07-07928BB0976D"
Back to Top