Skip to content

Delete contact list

If you have questions regarding this API, please visit our API FAQ page.

Deleting a contact list

Make a DELETE request to https://webapi.inboxroad.com/api/v2/contacts-lists/{blueprint_id}/ with a valid X-API-Key.

Terminal window
curl -X DELETE 'https://webapi.inboxroad.com/api/v2/contacts-lists/{blueprint_id}/' \
-H 'X-API-Key: <your_token>'

Path parameters

Param nameDescription
blueprint_idUnique identifier of the contacts list (UUID).

Response

On success the API returns 204 No Content with an empty body.

Possible response codes

Status codeDescription
204Contact list deleted successfully (empty body).
400The list cannot be deleted in its current state.
401Unauthorized.
404Contact list not found.
422blueprint_id is not a valid UUID.
429Rate limit exceeded. See Rate limiting.