Delete a program

delete

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

Deletes the program 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 program using an HTTP request and cURL. For more information on requests, see API requests.

HTTP Request Example

Delete the program with Id#40:


DELETE /api/REST/2.0/assets/program/40
Content-Type: application/json 
			

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/program/40
			
Back to Top