Delete a Software Title

DELETE /api/v1/titles/{ID}

Delete a software title from your submitted titles.

Warning

This does not remove the patch definition from any Jamf Pro instance that has subscribed to it. Those objects will continue to exist until the admin deletes them, but will no longer be updated.

DELETE /api/v1/titles/{ID}

Response

On success you will recieve a message stating the title has been deleted.

200 OK
Content-Type: application/json
{
    "message": "Title '{ID}' has been deleted"
}

Examples

An example using curl:

curl https://beta2.communitypatch.com/api/v1/titles/{ID} \
    -X DELETE \
    -H 'Authorization: Bearer {API-KEY}'