Delete a form

delete

/api/rest/2.0/assets/form/{id}

Deletes the form specified by the id parameter.

Request

Supported Media Types
Path Parameters
Back to Top

Response

Supported Media Types

200 Response

OK.

400 Response

Bad request. See Status Codes for information about other possible HTTP status codes.

401 Response

Unauthorized. See Status Codes for information about other possible HTTP status codes.

403 Response

Forbidden. See Status Codes for information about other possible HTTP status codes.

404 Response

The requested resource was not found. See Status Codes for information about other possible HTTP status codes.

500 Response

The service has encountered an error. See Status Codes for information about other possible HTTP status codes.
Back to Top

Examples

The following examples demonstrate how to delete a form page using an HTTP request and cURL. For more information on requests, see API requests.

HTTP Request Example

Delete the form with Id #21:


DELETE /api/REST/2.0/assets/form/21
			

Response:


200 OK
			

For DELETE requests, there is no body returned.

cURL Example

Here is the same example in cURL given an instance with the name APITest, username API.User, and POD of 3.


curl --user "APITest\API.User" --request DELETE https://secure.p03.eloqua.com/api/rest/2.0/assets/form/21
			
Back to Top