Skip to content

delete-limeobject

The delete-limeobject command deletes a limeobject given a limetype and the record ID.

Example

{
    "name": "delete-limeobject",
    "parameters": {
        "limetype": "deal",
        "id": 1001
    }
}

Parameters

limetype

Required. Specifies the limetype the command maps to.

id

Required. Specifies an existing limeobject ID to update.

Errors

Code Message
PARAMETER "The command parameter(s) are required: missingparameters"
PARAMETER "Invalid limetype: limetype"
PARAMETER "Invalid limeobject limetype:id"
PARAMETER "Access to limetype 'limetype' or a property is denied"

Note

The command will not fail when trying to delete an already deleted limeobject.

Back to top