DELETE https://restapi.actonsoftware.com/api/1/list/{listid}/record/{recordid}
Remove the specified contact record from the specified list.
Parameters
Name | Parameter Type |
Allow Multiple |
Required/ Optional |
Data Type | Description |
---|---|---|---|---|---|
Authorization: | Header | False | Required | String | Insert your generated access token. ("Bearer {access token}") |
listid | Path | False | Required | String | Specify the ID of the list being updated. |
recordid | Path | False | Required | String | Specify the ID of the record. ("{listid}:{recordid}") |
Response
{ "status": "success", "message": "Record deleted" }
Code Examples
cURL
curl -X DELETE https://restapi.actonsoftware.com/api/1/list/l-0002/record/l-0002:4 -H "Authorization: Bearer 12345678-9abc-defg-hijk-lmnopqrs"