Delete outbound application and corresponding security details

delete

/PASService/rest/services/v1/outboundApplications/{outboundApplicationId}

Deletes outbound application and corresponding security details.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

204 Response

This operation deletes outbound application and corresponding security details successfully.
Back to Top

Examples

Deletes its outboundApplications and OutboundSecurity records. For more information on Downstream Message Push parameters, refer to Downstream Message Push Parameters.

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/outboundApplications/22E39E64-7876-4A61-B5FE-E45A291C54D" \
	 
Back to Top